hotspot/src/share/vm/classfile/moduleEntry.hpp
author rprotacio
Mon, 05 Dec 2016 11:45:20 -0500
changeset 42634 7459867ebf98
parent 42575 bd1618170c93
child 42647 d01f2abf2c65
permissions -rw-r--r--
8168850: Mark module entries that have been specified by --patch-module Summary: Adds a boolean to ModuleEntry to specify whether the module has been patched using the command line --patch-module Reviewed-by: jiangli, lfoltan, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     1
/*
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     4
 *
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     7
 * published by the Free Software Foundation.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     8
 *
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    13
 * accompanied this code).
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    14
 *
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    18
 *
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    21
 * questions.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    22
 *
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    23
 */
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    24
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    25
#ifndef SHARE_VM_CLASSFILE_MODULEENTRY_HPP
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    26
#define SHARE_VM_CLASSFILE_MODULEENTRY_HPP
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    27
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    28
#include "classfile/classLoaderData.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    29
#include "classfile/vmSymbols.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    30
#include "oops/symbol.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    31
#include "prims/jni.h"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    32
#include "runtime/mutexLocker.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    33
#include "trace/traceMacros.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    34
#include "utilities/growableArray.hpp"
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    35
#include "utilities/hashtable.hpp"
37503
77531df4dad3 8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents: 36508
diff changeset
    36
#include "utilities/ostream.hpp"
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    37
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    38
#define UNNAMED_MODULE "Unnamed Module"
42575
bd1618170c93 8165550: Add class loader names to ClassCastException message
rprotacio
parents: 41183
diff changeset
    39
#define JAVA_BASE_NAME "java.base"
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    40
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    41
class ModuleClosure;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    42
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    43
// A ModuleEntry describes a module that has been defined by a call to JVM_DefineModule.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    44
// It contains:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    45
//   - Symbol* containing the module's name.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    46
//   - pointer to the java.lang.reflect.Module for this module.
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    47
//   - pointer to the java.security.ProtectionDomain shared by classes defined to this module.
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    48
//   - ClassLoaderData*, class loader of this module.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    49
//   - a growable array containg other module entries that this module can read.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    50
//   - a flag indicating if this module can read all unnamed modules.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    51
//
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    52
// The Mutex Module_lock is shared between ModuleEntry and PackageEntry, to lock either
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    53
// data structure.
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
    54
class ModuleEntry : public HashtableEntry<Symbol*, mtModule> {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    55
private:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    56
  jobject _module;                     // java.lang.reflect.Module
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    57
  jobject _pd;                         // java.security.ProtectionDomain, cached
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    58
                                       // for shared classes from this module
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    59
  ClassLoaderData* _loader_data;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    60
  GrowableArray<ModuleEntry*>* _reads; // list of modules that are readable by this module
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    61
  Symbol* _version;                    // module version number
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    62
  Symbol* _location;                   // module location
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    63
  bool _can_read_all_unnamed;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    64
  bool _has_default_read_edges;        // JVMTI redefine/retransform support
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    65
  bool _must_walk_reads;               // walk module's reads list at GC safepoints to purge out dead modules
42634
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
    66
  bool _is_patched;                    // whether the module is patched via --patch-module
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    67
  TRACE_DEFINE_TRACE_ID_FIELD;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    68
  enum {MODULE_READS_SIZE = 101};      // Initial size of list of modules that the module can read.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    69
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    70
public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    71
  void init() {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    72
    _module = NULL;
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    73
    _loader_data = NULL;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    74
    _pd = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    75
    _reads = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    76
    _version = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    77
    _location = NULL;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    78
    _can_read_all_unnamed = false;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    79
    _has_default_read_edges = false;
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    80
    _must_walk_reads = false;
42634
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
    81
    _is_patched = false;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    82
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    83
41183
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
    84
  Symbol*          name() const                        { return literal(); }
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
    85
  void             set_name(Symbol* n)                 { set_literal(n); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    86
41183
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
    87
  jobject          module() const                      { return _module; }
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
    88
  void             set_module(jobject j)               { _module = j; }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    89
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    90
  // The shared ProtectionDomain reference is set once the VM loads a shared class
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    91
  // originated from the current Module. The referenced ProtectionDomain object is
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    92
  // created by the ClassLoader when loading a class (shared or non-shared) from the
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    93
  // Module for the first time. This ProtectionDomain object is used for all
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    94
  // classes from the Module loaded by the same ClassLoader.
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    95
  Handle           shared_protection_domain();
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    96
  void             set_shared_protection_domain(ClassLoaderData *loader_data, Handle pd);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
    97
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    98
  ClassLoaderData* loader_data() const                 { return _loader_data; }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
    99
  void             set_loader_data(ClassLoaderData* l) { _loader_data = l; }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   100
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   101
  Symbol*          version() const                     { return _version; }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   102
  void             set_version(Symbol* version);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   103
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   104
  Symbol*          location() const                    { return _location; }
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   105
  void             set_location(Symbol* location);
42575
bd1618170c93 8165550: Add class loader names to ClassCastException message
rprotacio
parents: 41183
diff changeset
   106
  bool             is_non_jdk_module();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   107
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   108
  bool             can_read(ModuleEntry* m) const;
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   109
  bool             has_reads() const;
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   110
  void             add_read(ModuleEntry* m);
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   111
  void             set_read_walk_required(ClassLoaderData* m_loader_data);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   112
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   113
  bool             is_named() const                    { return (name() != NULL); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   114
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   115
  bool can_read_all_unnamed() const {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   116
    assert(is_named() || _can_read_all_unnamed == true,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   117
           "unnamed modules can always read all unnamed modules");
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   118
    return _can_read_all_unnamed;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   119
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   120
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   121
  // Modules can only go from strict to loose.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   122
  void set_can_read_all_unnamed() { _can_read_all_unnamed = true; }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   123
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   124
  bool has_default_read_edges() const {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   125
    return _has_default_read_edges;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   126
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   127
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   128
  // Sets true and returns the previous value.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   129
  bool set_has_default_read_edges() {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   130
    MutexLocker ml(Module_lock);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   131
    bool prev = _has_default_read_edges;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   132
    _has_default_read_edges = true;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   133
    return prev;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   134
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   135
42634
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   136
  void set_is_patched() {
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   137
      _is_patched = true;
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   138
  }
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   139
  bool is_patched() {
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   140
      return _is_patched;
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   141
  }
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 42575
diff changeset
   142
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   143
  ModuleEntry* next() const {
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   144
    return (ModuleEntry*)HashtableEntry<Symbol*, mtModule>::next();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   145
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   146
  ModuleEntry** next_addr() {
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   147
    return (ModuleEntry**)HashtableEntry<Symbol*, mtModule>::next_addr();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   148
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   149
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   150
  // iteration support for readability
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   151
  void module_reads_do(ModuleClosure* const f);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   152
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   153
  TRACE_DEFINE_TRACE_ID_METHODS;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   154
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   155
  // Purge dead weak references out of reads list when any given class loader is unloaded.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   156
  void purge_reads();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   157
  void delete_reads();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   158
37503
77531df4dad3 8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents: 36508
diff changeset
   159
  void print(outputStream* st = tty);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   160
  void verify();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   161
};
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   162
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   163
// Iterator interface
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   164
class ModuleClosure: public StackObj {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   165
 public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   166
  virtual void do_module(ModuleEntry* const module) = 0;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   167
};
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   168
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   169
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   170
// The ModuleEntryTable is a Hashtable containing a list of all modules defined
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   171
// by a particular class loader.  Each module is represented as a ModuleEntry node.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   172
//
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   173
// Each ModuleEntryTable contains a _javabase_module field which allows for the
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   174
// creation of java.base's ModuleEntry very early in bootstrapping before the
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   175
// corresponding JVM_DefineModule call for java.base occurs during module system
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   176
// initialization.  Setting up java.base's ModuleEntry early enables classes,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   177
// loaded prior to the module system being initialized to be created with their
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   178
// PackageEntry node's correctly pointing at java.base's ModuleEntry.  No class
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   179
// outside of java.base is allowed to be loaded pre-module system initialization.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   180
//
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   181
// The ModuleEntryTable's lookup is lock free.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   182
//
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   183
class ModuleEntryTable : public Hashtable<Symbol*, mtModule> {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   184
  friend class VMStructs;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   185
public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   186
  enum Constants {
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   187
    _moduletable_entry_size  = 109 // number of entries in module entry table
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   188
  };
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   189
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   190
private:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   191
  static ModuleEntry* _javabase_module;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   192
  ModuleEntry* _unnamed_module;
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   193
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   194
  ModuleEntry* new_entry(unsigned int hash, Handle module_handle, Symbol* name, Symbol* version,
39616
f82b1f888578 8159262: Walking PackageEntry Export and ModuleEntry Reads Must Occur Only When Neccessary And Wait Until ClassLoader's Aliveness Determined
lfoltan
parents: 38733
diff changeset
   195
                         Symbol* location, ClassLoaderData* loader_data);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   196
  void add_entry(int index, ModuleEntry* new_entry);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   197
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   198
  int entry_size() const { return BasicHashtable<mtModule>::entry_size(); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   199
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   200
  ModuleEntry** bucket_addr(int i) {
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   201
    return (ModuleEntry**)Hashtable<Symbol*, mtModule>::bucket_addr(i);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   202
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   203
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   204
  static unsigned int compute_hash(Symbol* name) { return ((name == NULL) ? 0 : (unsigned int)(name->identity_hash())); }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   205
  int index_for(Symbol* name) const              { return hash_to_index(compute_hash(name)); }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   206
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   207
public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   208
  ModuleEntryTable(int table_size);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   209
  ~ModuleEntryTable();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   210
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   211
  ModuleEntry* bucket(int i) {
38733
2b65f4db449e 8156156: Add module specific NMT MemoryType
hseigel
parents: 37503
diff changeset
   212
    return (ModuleEntry*)Hashtable<Symbol*, mtModule>::bucket(i);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   213
  }
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   214
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   215
  // Create module in loader's module entry table, if already exists then
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   216
  // return null.  Assume Module_lock has been locked by caller.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   217
  ModuleEntry* locked_create_entry_or_null(Handle module_handle,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   218
                                           Symbol* module_name,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   219
                                           Symbol* module_version,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   220
                                           Symbol* module_location,
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   221
                                           ClassLoaderData* loader_data);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   222
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   223
  // Only lookup module within loader's module entry table.  The table read is lock-free.
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   224
  ModuleEntry* lookup_only(Symbol* name);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   225
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   226
  // purge dead weak references out of reads list
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   227
  void purge_all_module_reads();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   228
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   229
  // Special handling for unnamed module, one per class loader's ModuleEntryTable
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   230
  void create_unnamed_module(ClassLoaderData* loader_data);
41183
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
   231
  ModuleEntry* unnamed_module()                                { return _unnamed_module; }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   232
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   233
  // Special handling for java.base
41183
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
   234
  static ModuleEntry* javabase_moduleEntry()                   { return _javabase_module; }
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
   235
  static void set_javabase_moduleEntry(ModuleEntry* java_base) { _javabase_module = java_base; }
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
   236
  static bool javabase_defined()                               { return ((_javabase_module != NULL) &&
207b92e69457 8163406: The fixup_module_list must be protected by Module_lock when inserting new entries
lfoltan
parents: 39616
diff changeset
   237
                                                                         (_javabase_module->module() != NULL)); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   238
  static void finalize_javabase(Handle module_handle, Symbol* version, Symbol* location);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   239
  static void patch_javabase_entries(Handle module_handle);
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   240
37503
77531df4dad3 8152845: Improve PackageEntry and ModuleEntry print methods for future logging
rprotacio
parents: 36508
diff changeset
   241
  void print(outputStream* st = tty);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   242
  void verify();
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   243
};
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   244
5f9eee6b383b 8142968: Module System implementation
alanb
parents:
diff changeset
   245
#endif // SHARE_VM_CLASSFILE_MODULEENTRY_HPP