src/hotspot/share/gc/z/zNMethodTable.cpp
author stefank
Tue, 19 Feb 2019 13:47:45 +0100
changeset 53887 2e1896987ed8
parent 53500 f618cfbaf35b
child 53888 a858ad440eb9
permissions -rw-r--r--
8219462: ZGC: Use wait/notify in ZNMethodTable Reviewed-by: pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     1
/*
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     2
 * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     4
 *
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     7
 * published by the Free Software Foundation.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     8
 *
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    13
 * accompanied this code).
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    14
 *
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    18
 *
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    21
 * questions.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    22
 */
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    23
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    24
#include "precompiled.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    25
#include "code/relocInfo.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    26
#include "code/nmethod.hpp"
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    27
#include "code/icBuffer.hpp"
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    28
#include "gc/shared/barrierSet.hpp"
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    29
#include "gc/shared/barrierSetNMethod.hpp"
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    30
#include "gc/z/zArray.inline.hpp"
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    31
#include "gc/z/zGlobals.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    32
#include "gc/z/zHash.inline.hpp"
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    33
#include "gc/z/zLock.inline.hpp"
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    34
#include "gc/z/zNMethodTable.hpp"
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    35
#include "gc/z/zOopClosures.inline.hpp"
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    36
#include "gc/z/zTask.hpp"
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    37
#include "gc/z/zWorkers.hpp"
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    38
#include "logging/log.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    39
#include "memory/allocation.inline.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    40
#include "memory/resourceArea.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    41
#include "runtime/atomic.hpp"
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    42
#include "runtime/orderAccess.hpp"
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    43
#include "utilities/debug.hpp"
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    44
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    45
class ZNMethodDataImmediateOops {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    46
private:
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    47
  const size_t _nimmediate_oops;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    48
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    49
  static size_t header_size();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    50
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    51
  ZNMethodDataImmediateOops(const GrowableArray<oop*>& immediate_oops);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    52
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    53
public:
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    54
  static ZNMethodDataImmediateOops* create(const GrowableArray<oop*>& immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    55
  static void destroy(ZNMethodDataImmediateOops* data_immediate_oops);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    56
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    57
  size_t immediate_oops_count() const;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    58
  oop** immediate_oops_begin() const;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    59
  oop** immediate_oops_end() const;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    60
};
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    61
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    62
size_t ZNMethodDataImmediateOops::header_size() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    63
  const size_t size = sizeof(ZNMethodDataImmediateOops);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    64
  assert(is_aligned(size, sizeof(oop*)), "Header misaligned");
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    65
  return size;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    66
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    67
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    68
ZNMethodDataImmediateOops* ZNMethodDataImmediateOops::create(const GrowableArray<oop*>& immediate_oops) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    69
  // Allocate memory for the ZNMethodDataImmediateOops object
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    70
  // plus the immediate oop* array that follows right after.
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    71
  const size_t size = ZNMethodDataImmediateOops::header_size() + (sizeof(oop*) * immediate_oops.length());
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    72
  void* const data_immediate_oops = NEW_C_HEAP_ARRAY(uint8_t, size, mtGC);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    73
  return ::new (data_immediate_oops) ZNMethodDataImmediateOops(immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    74
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    75
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    76
void ZNMethodDataImmediateOops::destroy(ZNMethodDataImmediateOops* data_immediate_oops) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    77
  ZNMethodTable::safe_delete(data_immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    78
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    79
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    80
ZNMethodDataImmediateOops::ZNMethodDataImmediateOops(const GrowableArray<oop*>& immediate_oops) :
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    81
    _nimmediate_oops(immediate_oops.length()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    82
  // Save all immediate oops
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    83
  for (size_t i = 0; i < _nimmediate_oops; i++) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    84
    immediate_oops_begin()[i] = immediate_oops.at(i);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    85
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    86
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    87
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    88
size_t ZNMethodDataImmediateOops::immediate_oops_count() const {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    89
  return _nimmediate_oops;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    90
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    91
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    92
oop** ZNMethodDataImmediateOops::immediate_oops_begin() const {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    93
  // The immediate oop* array starts immediately after this object
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    94
  return (oop**)((uintptr_t)this + header_size());
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    95
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    96
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
    97
oop** ZNMethodDataImmediateOops::immediate_oops_end() const {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    98
  return immediate_oops_begin() + immediate_oops_count();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
    99
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   100
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   101
class ZNMethodData {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   102
private:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   103
  ZReentrantLock                      _lock;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   104
  ZNMethodDataImmediateOops* volatile _immediate_oops;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   105
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   106
  ZNMethodData(nmethod* nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   107
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   108
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   109
  static ZNMethodData* create(nmethod* nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   110
  static void destroy(ZNMethodData* data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   111
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   112
  ZReentrantLock* lock();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   113
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   114
  ZNMethodDataImmediateOops* immediate_oops() const;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   115
  ZNMethodDataImmediateOops* swap_immediate_oops(const GrowableArray<oop*>& immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   116
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   117
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   118
ZNMethodData* ZNMethodData::create(nmethod* nm) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   119
  void* const method = NEW_C_HEAP_ARRAY(uint8_t, sizeof(ZNMethodData), mtGC);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   120
  return ::new (method) ZNMethodData(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   121
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   122
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   123
void ZNMethodData::destroy(ZNMethodData* data) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   124
  ZNMethodDataImmediateOops::destroy(data->immediate_oops());
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   125
  ZNMethodTable::safe_delete(data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   126
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   127
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   128
ZNMethodData::ZNMethodData(nmethod* nm) :
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   129
    _lock(),
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   130
    _immediate_oops(NULL) {}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   131
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   132
ZReentrantLock* ZNMethodData::lock() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   133
  return &_lock;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   134
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   135
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   136
ZNMethodDataImmediateOops* ZNMethodData::immediate_oops() const {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   137
  return OrderAccess::load_acquire(&_immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   138
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   139
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   140
ZNMethodDataImmediateOops* ZNMethodData::swap_immediate_oops(const GrowableArray<oop*>& immediate_oops) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   141
  ZNMethodDataImmediateOops* const data_immediate_oops =
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   142
    immediate_oops.is_empty() ? NULL : ZNMethodDataImmediateOops::create(immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   143
  return Atomic::xchg(data_immediate_oops, &_immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   144
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   145
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   146
static ZNMethodData* gc_data(const nmethod* nm) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   147
  return nm->gc_data<ZNMethodData>();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   148
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   149
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   150
static void set_gc_data(nmethod* nm, ZNMethodData* data) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   151
  return nm->set_gc_data<ZNMethodData>(data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   152
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   153
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   154
ZNMethodTableEntry* ZNMethodTable::_table = NULL;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   155
size_t ZNMethodTable::_size = 0;
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   156
ZLock ZNMethodTable::_iter_lock;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   157
ZNMethodTableEntry* ZNMethodTable::_iter_table = NULL;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   158
size_t ZNMethodTable::_iter_table_size = 0;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   159
ZArray<void*> ZNMethodTable::_iter_deferred_deletes;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   160
size_t ZNMethodTable::_nregistered = 0;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   161
size_t ZNMethodTable::_nunregistered = 0;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   162
volatile size_t ZNMethodTable::_claimed = 0;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   163
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   164
void ZNMethodTable::safe_delete(void* data) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   165
  if (data == NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   166
    return;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   167
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   168
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   169
  ZLocker<ZLock> locker(&_iter_lock);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   170
  if (_iter_table != NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   171
    // Iteration in progress, defer delete
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   172
    _iter_deferred_deletes.add(data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   173
  } else {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   174
    // Iteration not in progress, delete now
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   175
    FREE_C_HEAP_ARRAY(uint8_t, data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   176
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   177
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   178
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   179
ZNMethodTableEntry ZNMethodTable::create_entry(nmethod* nm) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   180
  GrowableArray<oop*> immediate_oops;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   181
  bool non_immediate_oops = false;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   182
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   183
  // Find all oops relocations
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   184
  RelocIterator iter(nm);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   185
  while (iter.next()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   186
    if (iter.type() != relocInfo::oop_type) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   187
      // Not an oop
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   188
      continue;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   189
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   190
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   191
    oop_Relocation* r = iter.oop_reloc();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   192
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   193
    if (!r->oop_is_immediate()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   194
      // Non-immediate oop found
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   195
      non_immediate_oops = true;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   196
      continue;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   197
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   198
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   199
    if (r->oop_value() != NULL) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   200
      // Non-NULL immediate oop found. NULL oops can safely be
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   201
      // ignored since the method will be re-registered if they
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   202
      // are later patched to be non-NULL.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   203
      immediate_oops.push(r->oop_addr());
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   204
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   205
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   206
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   207
  // Attach GC data to nmethod
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   208
  ZNMethodData* data = gc_data(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   209
  if (data == NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   210
    data = ZNMethodData::create(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   211
    set_gc_data(nm, data);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   212
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   213
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   214
  // Attach immediate oops in GC data
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   215
  ZNMethodDataImmediateOops* const old_data_immediate_oops = data->swap_immediate_oops(immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   216
  ZNMethodDataImmediateOops::destroy(old_data_immediate_oops);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   217
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   218
  // Create entry
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   219
  return ZNMethodTableEntry(nm, non_immediate_oops, !immediate_oops.is_empty());
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   220
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   221
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   222
ZReentrantLock* ZNMethodTable::lock_for_nmethod(nmethod* nm) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   223
  ZNMethodData* const data = gc_data(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   224
  if (data == NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   225
    return NULL;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   226
  }
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   227
  return data->lock();
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   228
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   229
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   230
size_t ZNMethodTable::first_index(const nmethod* nm, size_t size) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   231
  assert(is_power_of_2(size), "Invalid size");
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   232
  const size_t mask = size - 1;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   233
  const size_t hash = ZHash::address_to_uint32((uintptr_t)nm);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   234
  return hash & mask;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   235
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   236
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   237
size_t ZNMethodTable::next_index(size_t prev_index, size_t size) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   238
  assert(is_power_of_2(size), "Invalid size");
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   239
  const size_t mask = size - 1;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   240
  return (prev_index + 1) & mask;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   241
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   242
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   243
bool ZNMethodTable::register_entry(ZNMethodTableEntry* table, size_t size, ZNMethodTableEntry entry) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   244
  const nmethod* const nm = entry.method();
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   245
  size_t index = first_index(nm, size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   246
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   247
  for (;;) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   248
    const ZNMethodTableEntry table_entry = table[index];
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   249
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   250
    if (!table_entry.registered() && !table_entry.unregistered()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   251
      // Insert new entry
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   252
      table[index] = entry;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   253
      return true;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   254
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   255
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   256
    if (table_entry.registered() && table_entry.method() == nm) {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   257
      // Replace existing entry
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   258
      table[index] = entry;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   259
      return false;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   260
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   261
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   262
    index = next_index(index, size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   263
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   264
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   265
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   266
void ZNMethodTable::unregister_entry(ZNMethodTableEntry* table, size_t size, nmethod* nm) {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   267
  if (size == 0) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   268
    // Table is empty
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   269
    return;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   270
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   271
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   272
  size_t index = first_index(nm, size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   273
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   274
  for (;;) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   275
    const ZNMethodTableEntry table_entry = table[index];
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   276
    assert(table_entry.registered() || table_entry.unregistered(), "Entry not found");
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   277
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   278
    if (table_entry.registered() && table_entry.method() == nm) {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   279
      // Remove entry
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   280
      table[index] = ZNMethodTableEntry(true /* unregistered */);
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   281
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   282
      // Destroy GC data
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   283
      ZNMethodData::destroy(gc_data(nm));
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   284
      set_gc_data(nm, NULL);
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   285
      return;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   286
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   287
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   288
    index = next_index(index, size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   289
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   290
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   291
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   292
void ZNMethodTable::rebuild(size_t new_size) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   293
  ZLocker<ZLock> locker(&_iter_lock);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   294
  assert(is_power_of_2(new_size), "Invalid size");
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   295
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   296
  log_debug(gc, nmethod)("Rebuilding NMethod Table: "
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   297
                         SIZE_FORMAT "->" SIZE_FORMAT " entries, "
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   298
                         SIZE_FORMAT "(%.0lf%%->%.0lf%%) registered, "
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   299
                         SIZE_FORMAT "(%.0lf%%->%.0lf%%) unregistered",
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   300
                         _size, new_size,
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   301
                         _nregistered, percent_of(_nregistered, _size), percent_of(_nregistered, new_size),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   302
                         _nunregistered, percent_of(_nunregistered, _size), 0.0);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   303
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   304
  // Allocate new table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   305
  ZNMethodTableEntry* const new_table = new ZNMethodTableEntry[new_size];
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   306
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   307
  // Transfer all registered entries
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   308
  for (size_t i = 0; i < _size; i++) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   309
    const ZNMethodTableEntry entry = _table[i];
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   310
    if (entry.registered()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   311
      register_entry(new_table, new_size, entry);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   312
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   313
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   314
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   315
  if (_iter_table != _table) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   316
    // Delete old table
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   317
    delete [] _table;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   318
  }
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   319
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   320
  // Install new table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   321
  _table = new_table;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   322
  _size = new_size;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   323
  _nunregistered = 0;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   324
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   325
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   326
void ZNMethodTable::rebuild_if_needed() {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   327
  // The hash table uses linear probing. To avoid wasting memory while
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   328
  // at the same time maintaining good hash collision behavior we want
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   329
  // to keep the table occupancy between 30% and 70%. The table always
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   330
  // grows/shrinks by doubling/halving its size. Pruning of unregistered
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   331
  // entries is done by rebuilding the table with or without resizing it.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   332
  const size_t min_size = 1024;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   333
  const size_t shrink_threshold = _size * 0.30;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   334
  const size_t prune_threshold = _size * 0.65;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   335
  const size_t grow_threshold = _size * 0.70;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   336
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   337
  if (_size == 0) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   338
    // Initialize table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   339
    rebuild(min_size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   340
  } else if (_nregistered < shrink_threshold && _size > min_size) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   341
    // Shrink table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   342
    rebuild(_size / 2);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   343
  } else if (_nregistered + _nunregistered > grow_threshold) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   344
    // Prune or grow table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   345
    if (_nregistered < prune_threshold) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   346
      // Prune table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   347
      rebuild(_size);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   348
    } else {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   349
      // Grow table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   350
      rebuild(_size * 2);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   351
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   352
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   353
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   354
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   355
void ZNMethodTable::log_register(const nmethod* nm, ZNMethodTableEntry entry) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   356
  LogTarget(Trace, gc, nmethod) log;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   357
  if (!log.is_enabled()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   358
    return;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   359
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   360
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   361
  log.print("Register NMethod: %s.%s (" PTR_FORMAT "), "
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   362
            "Compiler: %s, Oops: %d, ImmediateOops: " SIZE_FORMAT ", NonImmediateOops: %s",
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   363
            nm->method()->method_holder()->external_name(),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   364
            nm->method()->name()->as_C_string(),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   365
            p2i(nm),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   366
            nm->compiler_name(),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   367
            nm->oops_count() - 1,
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   368
            entry.immediate_oops() ? gc_data(nm)->immediate_oops()->immediate_oops_count() : 0,
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   369
            entry.non_immediate_oops() ? "Yes" : "No");
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   370
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   371
  LogTarget(Trace, gc, nmethod, oops) log_oops;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   372
  if (!log_oops.is_enabled()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   373
    return;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   374
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   375
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   376
  // Print nmethod oops table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   377
  oop* const begin = nm->oops_begin();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   378
  oop* const end = nm->oops_end();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   379
  for (oop* p = begin; p < end; p++) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   380
    log_oops.print("           Oop[" SIZE_FORMAT "] " PTR_FORMAT " (%s)",
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   381
                   (p - begin), p2i(*p), (*p)->klass()->external_name());
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   382
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   383
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   384
  if (entry.immediate_oops()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   385
    // Print nmethod immediate oops
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   386
    const ZNMethodDataImmediateOops* const nmi = gc_data(nm)->immediate_oops();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   387
    if (nmi != NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   388
      oop** const begin = nmi->immediate_oops_begin();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   389
      oop** const end = nmi->immediate_oops_end();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   390
      for (oop** p = begin; p < end; p++) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   391
        log_oops.print("  ImmediateOop[" SIZE_FORMAT "] " PTR_FORMAT " @ " PTR_FORMAT " (%s)",
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   392
                       (p - begin), p2i(**p), p2i(*p), (**p)->klass()->external_name());
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   393
      }
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   394
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   395
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   396
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   397
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   398
void ZNMethodTable::log_unregister(const nmethod* nm) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   399
  LogTarget(Debug, gc, nmethod) log;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   400
  if (!log.is_enabled()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   401
    return;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   402
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   403
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   404
  log.print("Unregister NMethod: %s.%s (" PTR_FORMAT ")",
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   405
            nm->method()->method_holder()->external_name(),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   406
            nm->method()->name()->as_C_string(),
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   407
            p2i(nm));
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   408
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   409
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   410
size_t ZNMethodTable::registered_nmethods() {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   411
  return _nregistered;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   412
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   413
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   414
size_t ZNMethodTable::unregistered_nmethods() {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   415
  return _nunregistered;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   416
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   417
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   418
void ZNMethodTable::register_nmethod(nmethod* nm) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   419
  assert(CodeCache_lock->owned_by_self(), "Lock must be held");
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   420
  ResourceMark rm;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   421
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   422
  // Grow/Shrink/Prune table if needed
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   423
  rebuild_if_needed();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   424
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   425
  // Create entry
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   426
  const ZNMethodTableEntry entry = create_entry(nm);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   427
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   428
  log_register(nm, entry);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   429
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   430
  // Insert new entry
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   431
  if (register_entry(_table, _size, entry)) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   432
    // New entry registered. When register_entry() instead returns
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   433
    // false the nmethod was already in the table so we do not want
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   434
    // to increase number of registered entries in that case.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   435
    _nregistered++;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   436
  }
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   437
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   438
  // Disarm nmethod entry barrier
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   439
  disarm_nmethod(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   440
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   441
53887
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   442
void ZNMethodTable::wait_until_iteration_done() {
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   443
  assert(CodeCache_lock->owned_by_self(), "Lock must be held");
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   444
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   445
  while (_iter_table != NULL) {
53887
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   446
    CodeCache_lock->wait(Monitor::_no_safepoint_check_flag);
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   447
  }
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   448
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   449
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   450
void ZNMethodTable::unregister_nmethod(nmethod* nm) {
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   451
  assert(CodeCache_lock->owned_by_self(), "Lock must be held");
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   452
53887
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   453
  if (Thread::current()->is_Code_cache_sweeper_thread()) {
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   454
    // The sweeper must wait for any ongoing iteration to complete
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   455
    // before it can unregister an nmethod.
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   456
    ZNMethodTable::wait_until_iteration_done();
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   457
  }
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   458
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   459
  ResourceMark rm;
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   460
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   461
  log_unregister(nm);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   462
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   463
  // Remove entry
53500
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   464
  unregister_entry(_table, _size, nm);
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   465
  _nunregistered++;
f618cfbaf35b 8217309: ZGC: Fix ZNMethodTable corruption
pliden
parents: 53282
diff changeset
   466
  _nregistered--;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   467
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   468
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   469
void ZNMethodTable::disarm_nmethod(nmethod* nm) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   470
  BarrierSetNMethod* const bs = BarrierSet::barrier_set()->barrier_set_nmethod();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   471
  if (bs != NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   472
    bs->disarm(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   473
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   474
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   475
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   476
void ZNMethodTable::nmethod_entries_do_begin() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   477
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   478
  ZLocker<ZLock> locker(&_iter_lock);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   479
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   480
  // Prepare iteration
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   481
  _iter_table = _table;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   482
  _iter_table_size = _size;
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   483
  _claimed = 0;
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   484
  assert(_iter_deferred_deletes.is_empty(), "Should be emtpy");
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   485
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   486
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   487
void ZNMethodTable::nmethod_entries_do_end() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   488
  MutexLockerEx mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   489
  ZLocker<ZLock> locker(&_iter_lock);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   490
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   491
  // Finish iteration
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   492
  if (_iter_table != _table) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   493
    delete [] _iter_table;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   494
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   495
  _iter_table = NULL;
53887
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   496
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   497
  assert(_claimed >= _iter_table_size, "Failed to claim all table entries");
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   498
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   499
  // Process deferred deletes
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   500
  ZArrayIterator<void*> iter(&_iter_deferred_deletes);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   501
  for (void* data; iter.next(&data);) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   502
    FREE_C_HEAP_ARRAY(uint8_t, data);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   503
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   504
  _iter_deferred_deletes.clear();
53887
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   505
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   506
  // Notify iteration done
2e1896987ed8 8219462: ZGC: Use wait/notify in ZNMethodTable
stefank
parents: 53500
diff changeset
   507
  CodeCache_lock->notify_all();
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   508
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   509
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   510
void ZNMethodTable::entry_oops_do(ZNMethodTableEntry entry, OopClosure* cl) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   511
  nmethod* const nm = entry.method();
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   512
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   513
  // Process oops table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   514
  oop* const begin = nm->oops_begin();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   515
  oop* const end = nm->oops_end();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   516
  for (oop* p = begin; p < end; p++) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   517
    if (*p != Universe::non_oop_word()) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   518
      cl->do_oop(p);
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   519
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   520
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   521
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   522
  // Process immediate oops
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   523
  if (entry.immediate_oops()) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   524
    const ZNMethodDataImmediateOops* const nmi = gc_data(nm)->immediate_oops();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   525
    if (nmi != NULL) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   526
      oop** const begin = nmi->immediate_oops_begin();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   527
      oop** const end = nmi->immediate_oops_end();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   528
      for (oop** p = begin; p < end; p++) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   529
        if (**p != Universe::non_oop_word()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   530
          cl->do_oop(*p);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   531
        }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   532
      }
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   533
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   534
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   535
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   536
  // Process non-immediate oops
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   537
  if (entry.non_immediate_oops()) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   538
    nmethod* const nm = entry.method();
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   539
    nm->fix_oop_relocations();
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   540
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   541
}
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   542
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   543
class ZNMethodTableEntryToOopsDo : public ZNMethodTableEntryClosure {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   544
private:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   545
  OopClosure* _cl;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   546
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   547
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   548
  ZNMethodTableEntryToOopsDo(OopClosure* cl) :
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   549
      _cl(cl) {}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   550
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   551
  void do_nmethod_entry(ZNMethodTableEntry entry) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   552
    ZNMethodTable::entry_oops_do(entry, _cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   553
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   554
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   555
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   556
void ZNMethodTable::oops_do(OopClosure* cl) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   557
  ZNMethodTableEntryToOopsDo entry_cl(cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   558
  nmethod_entries_do(&entry_cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   559
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   560
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   561
void ZNMethodTable::nmethod_entries_do(ZNMethodTableEntryClosure* cl) {
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   562
  for (;;) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   563
    // Claim table partition. Each partition is currently sized to span
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   564
    // two cache lines. This number is just a guess, but seems to work well.
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   565
    const size_t partition_size = (ZCacheLineSize * 2) / sizeof(ZNMethodTableEntry);
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   566
    const size_t partition_start = MIN2(Atomic::add(partition_size, &_claimed) - partition_size, _iter_table_size);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   567
    const size_t partition_end = MIN2(partition_start + partition_size, _iter_table_size);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   568
    if (partition_start == partition_end) {
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   569
      // End of table
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   570
      break;
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   571
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   572
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   573
    // Process table partition
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   574
    for (size_t i = partition_start; i < partition_end; i++) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   575
      const ZNMethodTableEntry entry = _iter_table[i];
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   576
      if (entry.registered()) {
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   577
        cl->do_nmethod_entry(entry);
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   578
      }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   579
    }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   580
  }
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents:
diff changeset
   581
}
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   582
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   583
class ZNMethodTableUnlinkClosure : public ZNMethodTableEntryClosure {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   584
private:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   585
  bool          _unloading_occurred;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   586
  volatile bool _failed;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   587
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   588
  void set_failed() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   589
    Atomic::store(true, &_failed);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   590
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   591
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   592
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   593
  ZNMethodTableUnlinkClosure(bool unloading_occurred) :
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   594
      _unloading_occurred(unloading_occurred),
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   595
      _failed(false) {}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   596
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   597
  virtual void do_nmethod_entry(ZNMethodTableEntry entry) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   598
    if (failed()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   599
      return;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   600
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   601
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   602
    nmethod* const nm = entry.method();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   603
    if (!nm->is_alive()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   604
      return;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   605
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   606
53282
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   607
    ZLocker<ZReentrantLock> locker(ZNMethodTable::lock_for_nmethod(nm));
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   608
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   609
    if (nm->is_unloading()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   610
      // Unlinking of the dependencies must happen before the
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   611
      // handshake separating unlink and purge.
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   612
      nm->flush_dependencies(false /* delete_immediately */);
53282
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   613
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   614
      // We don't need to take the lock when unlinking nmethods from
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   615
      // the Method, because it is only concurrently unlinked by
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   616
      // the entry barrier, which acquires the per nmethod lock.
cb7fff9105a8 8215754: ZGC: nmethod is not unlinked from Method before rendezvous handshake
eosterlund
parents: 52939
diff changeset
   617
      nm->unlink_from_method(false /* acquire_lock */);
52939
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   618
      return;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   619
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   620
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   621
    // Heal oops and disarm
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   622
    ZNMethodOopClosure cl;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   623
    ZNMethodTable::entry_oops_do(entry, &cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   624
    ZNMethodTable::disarm_nmethod(nm);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   625
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   626
    // Clear compiled ICs and exception caches
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   627
    if (!nm->unload_nmethod_caches(_unloading_occurred)) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   628
      set_failed();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   629
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   630
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   631
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   632
  bool failed() const {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   633
    return Atomic::load(&_failed);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   634
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   635
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   636
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   637
class ZNMethodTableUnlinkTask : public ZTask {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   638
private:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   639
  ZNMethodTableUnlinkClosure _cl;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   640
  ICRefillVerifier*          _verifier;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   641
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   642
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   643
  ZNMethodTableUnlinkTask(bool unloading_occurred, ICRefillVerifier* verifier) :
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   644
      ZTask("ZNMethodTableUnlinkTask"),
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   645
      _cl(unloading_occurred),
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   646
      _verifier(verifier) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   647
    ZNMethodTable::nmethod_entries_do_begin();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   648
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   649
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   650
  ~ZNMethodTableUnlinkTask() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   651
    ZNMethodTable::nmethod_entries_do_end();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   652
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   653
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   654
  virtual void work() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   655
    ICRefillVerifierMark mark(_verifier);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   656
    ZNMethodTable::nmethod_entries_do(&_cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   657
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   658
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   659
  bool success() const {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   660
    return !_cl.failed();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   661
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   662
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   663
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   664
void ZNMethodTable::unlink(ZWorkers* workers, bool unloading_occurred) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   665
  for (;;) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   666
    ICRefillVerifier verifier;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   667
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   668
    {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   669
      ZNMethodTableUnlinkTask task(unloading_occurred, &verifier);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   670
      workers->run_concurrent(&task);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   671
      if (task.success()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   672
        return;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   673
      }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   674
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   675
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   676
    // Cleaning failed because we ran out of transitional IC stubs,
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   677
    // so we have to refill and try again. Refilling requires taking
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   678
    // a safepoint, so we temporarily leave the suspendible thread set.
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   679
    SuspendibleThreadSetLeaver sts;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   680
    InlineCacheBuffer::refill_ic_stubs();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   681
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   682
}
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   683
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   684
class ZNMethodTablePurgeClosure : public ZNMethodTableEntryClosure {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   685
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   686
  virtual void do_nmethod_entry(ZNMethodTableEntry entry) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   687
    nmethod* const nm = entry.method();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   688
    if (nm->is_alive() && nm->is_unloading()) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   689
      nm->make_unloaded();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   690
    }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   691
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   692
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   693
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   694
class ZNMethodTablePurgeTask : public ZTask {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   695
private:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   696
  ZNMethodTablePurgeClosure _cl;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   697
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   698
public:
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   699
  ZNMethodTablePurgeTask() :
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   700
      ZTask("ZNMethodTablePurgeTask"),
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   701
      _cl() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   702
    ZNMethodTable::nmethod_entries_do_begin();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   703
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   704
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   705
  ~ZNMethodTablePurgeTask() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   706
    ZNMethodTable::nmethod_entries_do_end();
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   707
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   708
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   709
  virtual void work() {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   710
    ZNMethodTable::nmethod_entries_do(&_cl);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   711
  }
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   712
};
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   713
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   714
void ZNMethodTable::purge(ZWorkers* workers) {
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   715
  ZNMethodTablePurgeTask task;
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   716
  workers->run_concurrent(&task);
9a8585f60c32 8214897: ZGC: Concurrent Class Unloading
eosterlund
parents: 52410
diff changeset
   717
}