src/hotspot/share/classfile/systemDictionaryShared.cpp
author iklam
Thu, 21 Feb 2019 17:07:35 -0800
changeset 53884 1a7b57d02107
parent 53249 fbab5d82f3d7
child 54786 ebf733a324d4
permissions -rw-r--r--
8218751: Do not store original classfiles inside the CDS archive Summary: remove the OD shared region and decode classfiles on the fly Reviewed-by: jiangli, ccheung, sspitsyn, redestad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     1
/*
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
     2
 * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     4
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     8
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    13
 * accompanied this code).
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    14
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    18
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    21
 * questions.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    22
 *
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    23
 */
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    24
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    25
#include "precompiled.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    26
#include "classfile/classFileStream.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    27
#include "classfile/classListParser.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    28
#include "classfile/classLoader.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    29
#include "classfile/classLoaderData.inline.hpp"
52468
e0fd97beab7e 8213250: CDS archive creation aborts due to metaspace object allocation failure
iklam
parents: 51823
diff changeset
    30
#include "classfile/classLoaderDataGraph.hpp"
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    31
#include "classfile/classLoaderExt.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    32
#include "classfile/dictionary.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    33
#include "classfile/javaClasses.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    34
#include "classfile/symbolTable.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    35
#include "classfile/systemDictionary.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    36
#include "classfile/systemDictionaryShared.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    37
#include "classfile/verificationType.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    38
#include "classfile/vmSymbols.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    39
#include "logging/log.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    40
#include "memory/allocation.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    41
#include "memory/filemap.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    42
#include "memory/metadataFactory.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    43
#include "memory/metaspaceClosure.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    44
#include "memory/oopFactory.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    45
#include "memory/resourceArea.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    46
#include "oops/instanceKlass.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    47
#include "oops/klass.inline.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    48
#include "oops/objArrayOop.inline.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    49
#include "oops/oop.inline.hpp"
49041
44122f767467 8198286: Direct memory accessors in typeArrayOop.hpp should use Access API
eosterlund
parents: 48138
diff changeset
    50
#include "oops/typeArrayOop.inline.hpp"
49393
93fe2fc5c093 8199472: Fix non-PCH build after JDK-8199319
simonis
parents: 49348
diff changeset
    51
#include "runtime/handles.inline.hpp"
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    52
#include "runtime/java.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    53
#include "runtime/javaCalls.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    54
#include "runtime/mutexLocker.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    55
#include "utilities/hashtable.inline.hpp"
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    56
#include "utilities/resourceHash.hpp"
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    57
#include "utilities/stringUtils.hpp"
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    58
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    59
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    60
objArrayOop SystemDictionaryShared::_shared_protection_domains  =  NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    61
objArrayOop SystemDictionaryShared::_shared_jar_urls            =  NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
    62
objArrayOop SystemDictionaryShared::_shared_jar_manifests       =  NULL;
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    63
DEBUG_ONLY(bool SystemDictionaryShared::_checked_excluded_classes = false;)
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    64
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    65
class DumpTimeSharedClassInfo: public CHeapObj<mtClass> {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    66
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    67
  struct DTConstraint {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    68
    Symbol* _name;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    69
    Symbol* _from_name;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    70
    DTConstraint() : _name(NULL), _from_name(NULL) {}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    71
    DTConstraint(Symbol* n, Symbol* fn) : _name(n), _from_name(fn) {}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    72
  };
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    73
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    74
  InstanceKlass*               _klass;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    75
  int                          _id;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    76
  int                          _clsfile_size;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    77
  int                          _clsfile_crc32;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    78
  bool                         _excluded;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    79
  GrowableArray<DTConstraint>* _verifier_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    80
  GrowableArray<char>*         _verifier_constraint_flags;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    81
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    82
  DumpTimeSharedClassInfo() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    83
    _klass = NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    84
    _id = -1;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    85
    _clsfile_size = -1;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    86
    _clsfile_crc32 = -1;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    87
    _excluded = false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    88
    _verifier_constraints = NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    89
    _verifier_constraint_flags = NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    90
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    91
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    92
  void add_verification_constraint(InstanceKlass* k, Symbol* name,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    93
         Symbol* from_name, bool from_field_is_protected, bool from_is_array, bool from_is_object);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    94
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    95
  bool is_builtin() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    96
    return SystemDictionaryShared::is_builtin(_klass);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    97
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    98
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
    99
  int num_constraints() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   100
    if (_verifier_constraint_flags != NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   101
      return _verifier_constraint_flags->length();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   102
    } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   103
      return 0;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   104
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   105
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   106
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   107
  void metaspace_pointers_do(MetaspaceClosure* it) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   108
    it->push(&_klass);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   109
    if (_verifier_constraints != NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   110
      for (int i = 0; i < _verifier_constraints->length(); i++) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   111
        DTConstraint* cons = _verifier_constraints->adr_at(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   112
        it->push(&cons->_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   113
        it->push(&cons->_from_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   114
      }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   115
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   116
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   117
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   118
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   119
class DumpTimeSharedClassTable: public ResourceHashtable<
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   120
  InstanceKlass*,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   121
  DumpTimeSharedClassInfo,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   122
  primitive_hash<InstanceKlass*>,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   123
  primitive_equals<InstanceKlass*>,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   124
  15889, // prime number
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   125
  ResourceObj::C_HEAP>
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   126
{
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   127
  int _builtin_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   128
  int _unregistered_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   129
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   130
  DumpTimeSharedClassInfo* find_or_allocate_info_for(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   131
    DumpTimeSharedClassInfo* p = get(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   132
    if (p == NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   133
      assert(!SystemDictionaryShared::checked_excluded_classes(),
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   134
             "no new classes can be added after check_excluded_classes");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   135
      put(k, DumpTimeSharedClassInfo());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   136
      p = get(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   137
      assert(p != NULL, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   138
      p->_klass = k;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   139
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   140
    return p;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   141
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   142
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   143
  class CountClassByCategory : StackObj {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   144
    DumpTimeSharedClassTable* _table;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   145
  public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   146
    CountClassByCategory(DumpTimeSharedClassTable* table) : _table(table) {}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   147
    bool do_entry(InstanceKlass* k, DumpTimeSharedClassInfo& info) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   148
      if (SystemDictionaryShared::is_builtin(k)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   149
        ++ _table->_builtin_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   150
      } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   151
        ++ _table->_unregistered_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   152
      }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   153
      return true; // keep on iterating
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   154
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   155
  };
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   156
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   157
  void update_counts() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   158
    CountClassByCategory counter(this);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   159
    iterate(&counter);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   160
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   161
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   162
  int count_of(bool is_builtin) const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   163
    if (is_builtin) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   164
      return _builtin_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   165
    } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   166
      return _unregistered_count;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   167
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   168
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   169
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   170
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   171
class RunTimeSharedClassInfo {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   172
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   173
  struct CrcInfo {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   174
    int _clsfile_size;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   175
    int _clsfile_crc32;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   176
  };
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   177
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   178
  // This is different than  DumpTimeSharedClassInfo::DTConstraint. We use
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   179
  // u4 instead of Symbol* to save space on 64-bit CPU.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   180
  struct RTConstraint {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   181
    u4 _name;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   182
    u4 _from_name;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   183
  };
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   184
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   185
  InstanceKlass* _klass;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   186
  int _num_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   187
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   188
  // optional CrcInfo      _crc;  (only for UNREGISTERED classes)
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   189
  // optional RTConstraint _verifier_constraints[_num_constraints]
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   190
  // optional char         _verifier_constraint_flags[_num_constraints]
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   191
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   192
private:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   193
  static size_t header_size_size() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   194
    return sizeof(RunTimeSharedClassInfo);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   195
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   196
  static size_t crc_size(InstanceKlass* klass) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   197
    if (!SystemDictionaryShared::is_builtin(klass)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   198
      return sizeof(CrcInfo);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   199
    } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   200
      return 0;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   201
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   202
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   203
  static size_t verifier_constraints_size(int num_constraints) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   204
    return sizeof(RTConstraint) * num_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   205
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   206
  static size_t verifier_constraint_flags_size(int num_constraints) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   207
    return sizeof(char) * num_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   208
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   209
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   210
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   211
  static size_t byte_size(InstanceKlass* klass, int num_constraints) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   212
    return header_size_size() +
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   213
           crc_size(klass) +
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   214
           verifier_constraints_size(num_constraints) +
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   215
           verifier_constraint_flags_size(num_constraints);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   216
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   217
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   218
private:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   219
  size_t crc_offset() const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   220
    return header_size_size();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   221
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   222
  size_t verifier_constraints_offset() const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   223
    return crc_offset() + crc_size(_klass);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   224
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   225
  size_t verifier_constraint_flags_offset() const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   226
    return verifier_constraints_offset() + verifier_constraints_size(_num_constraints);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   227
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   228
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   229
  void check_constraint_offset(int i) const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   230
    assert(0 <= i && i < _num_constraints, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   231
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   232
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   233
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   234
  CrcInfo* crc() const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   235
    assert(crc_size(_klass) > 0, "must be");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   236
    return (CrcInfo*)(address(this) + crc_offset());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   237
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   238
  RTConstraint* verifier_constraints() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   239
    assert(_num_constraints > 0, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   240
    return (RTConstraint*)(address(this) + verifier_constraints_offset());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   241
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   242
  RTConstraint* verifier_constraint_at(int i) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   243
    check_constraint_offset(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   244
    return verifier_constraints() + i;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   245
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   246
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   247
  char* verifier_constraint_flags() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   248
    assert(_num_constraints > 0, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   249
    return (char*)(address(this) + verifier_constraint_flags_offset());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   250
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   251
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   252
  void init(DumpTimeSharedClassInfo& info) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   253
    _klass = info._klass;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   254
    _num_constraints = info.num_constraints();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   255
    if (!SystemDictionaryShared::is_builtin(_klass)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   256
      CrcInfo* c = crc();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   257
      c->_clsfile_size = info._clsfile_size;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   258
      c->_clsfile_crc32 = info._clsfile_crc32;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   259
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   260
    if (_num_constraints > 0) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   261
      RTConstraint* constraints = verifier_constraints();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   262
      char* flags = verifier_constraint_flags();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   263
      int i;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   264
      for (i = 0; i < _num_constraints; i++) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   265
        constraints[i]._name      = MetaspaceShared::object_delta_u4(info._verifier_constraints->at(i)._name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   266
        constraints[i]._from_name = MetaspaceShared::object_delta_u4(info._verifier_constraints->at(i)._from_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   267
      }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   268
      for (i = 0; i < _num_constraints; i++) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   269
        flags[i] = info._verifier_constraint_flags->at(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   270
      }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   271
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   272
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   273
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   274
  bool matches(int clsfile_size, int clsfile_crc32) const {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   275
    return crc()->_clsfile_size  == clsfile_size &&
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   276
           crc()->_clsfile_crc32 == clsfile_crc32;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   277
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   278
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   279
  Symbol* get_constraint_name(int i) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   280
    return (Symbol*)(SharedBaseAddress + verifier_constraint_at(i)->_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   281
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   282
  Symbol* get_constraint_from_name(int i) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   283
    return (Symbol*)(SharedBaseAddress + verifier_constraint_at(i)->_from_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   284
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   285
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   286
  char get_constraint_flag(int i) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   287
    check_constraint_offset(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   288
    return verifier_constraint_flags()[i];
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   289
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   290
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   291
private:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   292
  // ArchiveCompactor::allocate() has reserved a pointer immediately before
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   293
  // archived InstanceKlasses. We can use this slot to do a quick
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   294
  // lookup of InstanceKlass* -> RunTimeSharedClassInfo* without
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   295
  // building a new hashtable.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   296
  //
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   297
  //  info_pointer_addr(klass) --> 0x0100   RunTimeSharedClassInfo*
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   298
  //  InstanceKlass* klass     --> 0x0108   <C++ vtbl>
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   299
  //                               0x0110   fields from Klass ...
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   300
  static RunTimeSharedClassInfo** info_pointer_addr(InstanceKlass* klass) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   301
    return &((RunTimeSharedClassInfo**)klass)[-1];
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   302
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   303
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   304
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   305
  static RunTimeSharedClassInfo* get_for(InstanceKlass* klass) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   306
    return *info_pointer_addr(klass);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   307
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   308
  static void set_for(InstanceKlass* klass, RunTimeSharedClassInfo* record) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   309
    *info_pointer_addr(klass) = record;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   310
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   311
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   312
  // Used by RunTimeSharedDictionary to implement OffsetCompactHashtable::EQUALS
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   313
  static inline bool EQUALS(
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   314
       const RunTimeSharedClassInfo* value, Symbol* key, int len_unused) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   315
    return (value->_klass->name() == key);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   316
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   317
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   318
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   319
class RunTimeSharedDictionary : public OffsetCompactHashtable<
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   320
  Symbol*,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   321
  const RunTimeSharedClassInfo*,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   322
  RunTimeSharedClassInfo::EQUALS> {};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   323
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   324
static DumpTimeSharedClassTable* _dumptime_table = NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   325
static RunTimeSharedDictionary _builtin_dictionary;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   326
static RunTimeSharedDictionary _unregistered_dictionary;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   327
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   328
oop SystemDictionaryShared::shared_protection_domain(int index) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   329
  return _shared_protection_domains->obj_at(index);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   330
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   331
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   332
oop SystemDictionaryShared::shared_jar_url(int index) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   333
  return _shared_jar_urls->obj_at(index);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   334
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   335
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   336
oop SystemDictionaryShared::shared_jar_manifest(int index) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   337
  return _shared_jar_manifests->obj_at(index);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   338
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   339
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   340
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   341
Handle SystemDictionaryShared::get_shared_jar_manifest(int shared_path_index, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   342
  Handle manifest ;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   343
  if (shared_jar_manifest(shared_path_index) == NULL) {
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   344
    SharedClassPathEntry* ent = FileMapInfo::shared_path(shared_path_index);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   345
    long size = ent->manifest_size();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   346
    if (size <= 0) {
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   347
      return Handle();
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   348
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   349
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   350
    // ByteArrayInputStream bais = new ByteArrayInputStream(buf);
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   351
    const char* src = ent->manifest();
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   352
    assert(src != NULL, "No Manifest data");
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   353
    typeArrayOop buf = oopFactory::new_byteArray(size, CHECK_NH);
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   354
    typeArrayHandle bufhandle(THREAD, buf);
50389
7e8c0409a747 8198285: More consistent Access API for arraycopy
rkennke
parents: 50152
diff changeset
   355
    ArrayAccess<>::arraycopy_from_native(reinterpret_cast<const jbyte*>(src),
7e8c0409a747 8198285: More consistent Access API for arraycopy
rkennke
parents: 50152
diff changeset
   356
                                         buf, typeArrayOopDesc::element_offset<jbyte>(0), size);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   357
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   358
    Handle bais = JavaCalls::construct_new_instance(SystemDictionary::ByteArrayInputStream_klass(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   359
                      vmSymbols::byte_array_void_signature(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   360
                      bufhandle, CHECK_NH);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   361
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   362
    // manifest = new Manifest(bais)
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   363
    manifest = JavaCalls::construct_new_instance(SystemDictionary::Jar_Manifest_klass(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   364
                      vmSymbols::input_stream_void_signature(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   365
                      bais, CHECK_NH);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   366
    atomic_set_shared_jar_manifest(shared_path_index, manifest());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   367
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   368
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   369
  manifest = Handle(THREAD, shared_jar_manifest(shared_path_index));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   370
  assert(manifest.not_null(), "sanity");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   371
  return manifest;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   372
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   373
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   374
Handle SystemDictionaryShared::get_shared_jar_url(int shared_path_index, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   375
  Handle url_h;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   376
  if (shared_jar_url(shared_path_index) == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   377
    JavaValue result(T_OBJECT);
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   378
    const char* path = FileMapInfo::shared_path_name(shared_path_index);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   379
    Handle path_string = java_lang_String::create_from_str(path, CHECK_(url_h));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   380
    Klass* classLoaders_klass =
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   381
        SystemDictionary::jdk_internal_loader_ClassLoaders_klass();
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   382
    JavaCalls::call_static(&result, classLoaders_klass,
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   383
                           vmSymbols::toFileURL_name(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   384
                           vmSymbols::toFileURL_signature(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   385
                           path_string, CHECK_(url_h));
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   386
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   387
    atomic_set_shared_jar_url(shared_path_index, (oop)result.get_jobject());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   388
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   389
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   390
  url_h = Handle(THREAD, shared_jar_url(shared_path_index));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   391
  assert(url_h.not_null(), "sanity");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   392
  return url_h;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   393
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   394
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   395
Handle SystemDictionaryShared::get_package_name(Symbol* class_name, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   396
  ResourceMark rm(THREAD);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   397
  Handle pkgname_string;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   398
  char* pkgname = (char*) ClassLoader::package_from_name((const char*) class_name->as_C_string());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   399
  if (pkgname != NULL) { // Package prefix found
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   400
    StringUtils::replace_no_expand(pkgname, "/", ".");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   401
    pkgname_string = java_lang_String::create_from_str(pkgname,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   402
                                                       CHECK_(pkgname_string));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   403
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   404
  return pkgname_string;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   405
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   406
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   407
// Define Package for shared app classes from JAR file and also checks for
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   408
// package sealing (all done in Java code)
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   409
// See http://docs.oracle.com/javase/tutorial/deployment/jar/sealman.html
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   410
void SystemDictionaryShared::define_shared_package(Symbol*  class_name,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   411
                                                   Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   412
                                                   Handle manifest,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   413
                                                   Handle url,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   414
                                                   TRAPS) {
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   415
  assert(SystemDictionary::is_system_class_loader(class_loader()), "unexpected class loader");
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   416
  // get_package_name() returns a NULL handle if the class is in unnamed package
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   417
  Handle pkgname_string = get_package_name(class_name, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   418
  if (pkgname_string.not_null()) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   419
    Klass* app_classLoader_klass = SystemDictionary::jdk_internal_loader_ClassLoaders_AppClassLoader_klass();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   420
    JavaValue result(T_OBJECT);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   421
    JavaCallArguments args(3);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   422
    args.set_receiver(class_loader);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   423
    args.push_oop(pkgname_string);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   424
    args.push_oop(manifest);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   425
    args.push_oop(url);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   426
    JavaCalls::call_virtual(&result, app_classLoader_klass,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   427
                            vmSymbols::defineOrCheckPackage_name(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   428
                            vmSymbols::defineOrCheckPackage_signature(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   429
                            &args,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   430
                            CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   431
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   432
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   433
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   434
// Define Package for shared app/platform classes from named module
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   435
void SystemDictionaryShared::define_shared_package(Symbol* class_name,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   436
                                                   Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   437
                                                   ModuleEntry* mod_entry,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   438
                                                   TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   439
  assert(mod_entry != NULL, "module_entry should not be NULL");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   440
  Handle module_handle(THREAD, mod_entry->module());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   441
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   442
  Handle pkg_name = get_package_name(class_name, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   443
  assert(pkg_name.not_null(), "Package should not be null for class in named module");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   444
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   445
  Klass* classLoader_klass;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   446
  if (SystemDictionary::is_system_class_loader(class_loader())) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   447
    classLoader_klass = SystemDictionary::jdk_internal_loader_ClassLoaders_AppClassLoader_klass();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   448
  } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   449
    assert(SystemDictionary::is_platform_class_loader(class_loader()), "unexpected classloader");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   450
    classLoader_klass = SystemDictionary::jdk_internal_loader_ClassLoaders_PlatformClassLoader_klass();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   451
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   452
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   453
  JavaValue result(T_OBJECT);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   454
  JavaCallArguments args(2);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   455
  args.set_receiver(class_loader);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   456
  args.push_oop(pkg_name);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   457
  args.push_oop(module_handle);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   458
  JavaCalls::call_virtual(&result, classLoader_klass,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   459
                          vmSymbols::definePackage_name(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   460
                          vmSymbols::definePackage_signature(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   461
                          &args,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   462
                          CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   463
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   464
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   465
// Get the ProtectionDomain associated with the CodeSource from the classloader.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   466
Handle SystemDictionaryShared::get_protection_domain_from_classloader(Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   467
                                                                      Handle url, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   468
  // CodeSource cs = new CodeSource(url, null);
50152
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   469
  Handle cs = JavaCalls::construct_new_instance(SystemDictionary::CodeSource_klass(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   470
                  vmSymbols::url_code_signer_array_void_signature(),
b5023063346d 8189140: SystemDictionaryShared::initialize() should be renamed to be more meaningful
iklam
parents: 50039
diff changeset
   471
                  url, Handle(), CHECK_NH);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   472
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   473
  // protection_domain = SecureClassLoader.getProtectionDomain(cs);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   474
  Klass* secureClassLoader_klass = SystemDictionary::SecureClassLoader_klass();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   475
  JavaValue obj_result(T_OBJECT);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   476
  JavaCalls::call_virtual(&obj_result, class_loader, secureClassLoader_klass,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   477
                          vmSymbols::getProtectionDomain_name(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   478
                          vmSymbols::getProtectionDomain_signature(),
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   479
                          cs, CHECK_NH);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   480
  return Handle(THREAD, (oop)obj_result.get_jobject());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   481
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   482
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   483
// Returns the ProtectionDomain associated with the JAR file identified by the url.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   484
Handle SystemDictionaryShared::get_shared_protection_domain(Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   485
                                                            int shared_path_index,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   486
                                                            Handle url,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   487
                                                            TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   488
  Handle protection_domain;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   489
  if (shared_protection_domain(shared_path_index) == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   490
    Handle pd = get_protection_domain_from_classloader(class_loader, url, THREAD);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   491
    atomic_set_shared_protection_domain(shared_path_index, pd());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   492
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   493
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   494
  // Acquire from the cache because if another thread beats the current one to
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   495
  // set the shared protection_domain and the atomic_set fails, the current thread
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   496
  // needs to get the updated protection_domain from the cache.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   497
  protection_domain = Handle(THREAD, shared_protection_domain(shared_path_index));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   498
  assert(protection_domain.not_null(), "sanity");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   499
  return protection_domain;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   500
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   501
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   502
// Returns the ProtectionDomain associated with the moduleEntry.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   503
Handle SystemDictionaryShared::get_shared_protection_domain(Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   504
                                                            ModuleEntry* mod, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   505
  ClassLoaderData *loader_data = mod->loader_data();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   506
  if (mod->shared_protection_domain() == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   507
    Symbol* location = mod->location();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   508
    if (location != NULL) {
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   509
      Handle location_string = java_lang_String::create_from_symbol(
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   510
                                     location, CHECK_NH);
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   511
      Handle url;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   512
      JavaValue result(T_OBJECT);
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   513
      if (location->starts_with("jrt:/")) {
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   514
        url = JavaCalls::construct_new_instance(SystemDictionary::URL_klass(),
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   515
                                                vmSymbols::string_void_signature(),
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   516
                                                location_string, CHECK_NH);
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   517
      } else {
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   518
        Klass* classLoaders_klass =
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   519
          SystemDictionary::jdk_internal_loader_ClassLoaders_klass();
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   520
        JavaCalls::call_static(&result, classLoaders_klass, vmSymbols::toFileURL_name(),
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   521
                               vmSymbols::toFileURL_signature(),
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   522
                               location_string, CHECK_NH);
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   523
        url = Handle(THREAD, (oop)result.get_jobject());
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   524
      }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   525
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   526
      Handle pd = get_protection_domain_from_classloader(class_loader, url,
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   527
                                                         CHECK_NH);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   528
      mod->set_shared_protection_domain(loader_data, pd);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   529
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   530
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   531
53249
fbab5d82f3d7 8214827: Incorrect call ClassLoaders.toFileURL("jrt:/java.compiler")
jiangli
parents: 52514
diff changeset
   532
  Handle protection_domain(THREAD, mod->shared_protection_domain());
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   533
  assert(protection_domain.not_null(), "sanity");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   534
  return protection_domain;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   535
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   536
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   537
// Initializes the java.lang.Package and java.security.ProtectionDomain objects associated with
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   538
// the given InstanceKlass.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   539
// Returns the ProtectionDomain for the InstanceKlass.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   540
Handle SystemDictionaryShared::init_security_info(Handle class_loader, InstanceKlass* ik, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   541
  Handle pd;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   542
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   543
  if (ik != NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   544
    int index = ik->shared_classpath_index();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   545
    assert(index >= 0, "Sanity");
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   546
    SharedClassPathEntry* ent = FileMapInfo::shared_path(index);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   547
    Symbol* class_name = ik->name();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   548
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   549
    if (ent->is_modules_image()) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   550
      // For shared app/platform classes originated from the run-time image:
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   551
      //   The ProtectionDomains are cached in the corresponding ModuleEntries
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   552
      //   for fast access by the VM.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   553
      ResourceMark rm;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   554
      ClassLoaderData *loader_data =
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   555
                ClassLoaderData::class_loader_data(class_loader());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   556
      PackageEntryTable* pkgEntryTable = loader_data->packages();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   557
      TempNewSymbol pkg_name = InstanceKlass::package_from_name(class_name, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   558
      if (pkg_name != NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   559
        PackageEntry* pkg_entry = pkgEntryTable->lookup_only(pkg_name);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   560
        if (pkg_entry != NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   561
          ModuleEntry* mod_entry = pkg_entry->module();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   562
          pd = get_shared_protection_domain(class_loader, mod_entry, THREAD);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   563
          define_shared_package(class_name, class_loader, mod_entry, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   564
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   565
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   566
    } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   567
      // For shared app/platform classes originated from JAR files on the class path:
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   568
      //   Each of the 3 SystemDictionaryShared::_shared_xxx arrays has the same length
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   569
      //   as the shared classpath table in the shared archive (see
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   570
      //   FileMap::_shared_path_table in filemap.hpp for details).
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   571
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   572
      //   If a shared InstanceKlass k is loaded from the class path, let
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   573
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   574
      //     index = k->shared_classpath_index():
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   575
      //
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   576
      //   FileMap::_shared_path_table[index] identifies the JAR file that contains k.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   577
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   578
      //   k's protection domain is:
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   579
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   580
      //     ProtectionDomain pd = _shared_protection_domains[index];
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   581
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   582
      //   and k's Package is initialized using
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   583
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   584
      //     manifest = _shared_jar_manifests[index];
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   585
      //     url = _shared_jar_urls[index];
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   586
      //     define_shared_package(class_name, class_loader, manifest, url, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   587
      //
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   588
      //   Note that if an element of these 3 _shared_xxx arrays is NULL, it will be initialized by
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   589
      //   the corresponding SystemDictionaryShared::get_shared_xxx() function.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   590
      Handle manifest = get_shared_jar_manifest(index, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   591
      Handle url = get_shared_jar_url(index, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   592
      define_shared_package(class_name, class_loader, manifest, url, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   593
      pd = get_shared_protection_domain(class_loader, index, url, CHECK_(pd));
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   594
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   595
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   596
  return pd;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   597
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   598
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49739
diff changeset
   599
bool SystemDictionaryShared::is_sharing_possible(ClassLoaderData* loader_data) {
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49739
diff changeset
   600
  oop class_loader = loader_data->class_loader();
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49739
diff changeset
   601
  return (class_loader == NULL ||
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   602
          SystemDictionary::is_system_class_loader(class_loader) ||
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   603
          SystemDictionary::is_platform_class_loader(class_loader));
49824
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49739
diff changeset
   604
}
e242740a92b8 8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents: 49739
diff changeset
   605
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   606
// Currently AppCDS only archives classes from the run-time image, the
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   607
// -Xbootclasspath/a path, the class path, and the module path.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   608
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   609
// Check if a shared class can be loaded by the specific classloader. Following
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   610
// are the "visible" archived classes for different classloaders.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   611
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   612
// NULL classloader:
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   613
//   - see SystemDictionary::is_shared_class_visible()
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   614
// Platform classloader:
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   615
//   - Module class from runtime image. ModuleEntry must be defined in the
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   616
//     classloader.
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   617
// App classloader:
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   618
//   - Module Class from runtime image and module path. ModuleEntry must be defined in the
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   619
//     classloader.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   620
//   - Class from -cp. The class must have no PackageEntry defined in any of the
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   621
//     boot/platform/app classloader, or must be in the unnamed module defined in the
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   622
//     AppClassLoader.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   623
bool SystemDictionaryShared::is_shared_class_visible_for_classloader(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   624
                                                     InstanceKlass* ik,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   625
                                                     Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   626
                                                     const char* pkg_string,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   627
                                                     Symbol* pkg_name,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   628
                                                     PackageEntry* pkg_entry,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   629
                                                     ModuleEntry* mod_entry,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   630
                                                     TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   631
  assert(class_loader.not_null(), "Class loader should not be NULL");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   632
  assert(Universe::is_module_initialized(), "Module system is not initialized");
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   633
  ResourceMark rm(THREAD);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   634
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   635
  int path_index = ik->shared_classpath_index();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   636
  SharedClassPathEntry* ent =
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   637
            (SharedClassPathEntry*)FileMapInfo::shared_path(path_index);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   638
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   639
  if (SystemDictionary::is_platform_class_loader(class_loader())) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   640
    assert(ent != NULL, "shared class for PlatformClassLoader should have valid SharedClassPathEntry");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   641
    // The PlatformClassLoader can only load archived class originated from the
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   642
    // run-time image. The class' PackageEntry/ModuleEntry must be
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   643
    // defined by the PlatformClassLoader.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   644
    if (mod_entry != NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   645
      // PackageEntry/ModuleEntry is found in the classloader. Check if the
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   646
      // ModuleEntry's location agrees with the archived class' origination.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   647
      if (ent->is_modules_image() && mod_entry->location()->starts_with("jrt:")) {
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   648
        return true; // Module class from the runtime image
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   649
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   650
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   651
  } else if (SystemDictionary::is_system_class_loader(class_loader())) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   652
    assert(ent != NULL, "shared class for system loader should have valid SharedClassPathEntry");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   653
    if (pkg_string == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   654
      // The archived class is in the unnamed package. Currently, the boot image
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   655
      // does not contain any class in the unnamed package.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   656
      assert(!ent->is_modules_image(), "Class in the unnamed package must be from the classpath");
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   657
      if (path_index >= ClassLoaderExt::app_class_paths_start_index()) {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   658
        assert(path_index < ClassLoaderExt::app_module_paths_start_index(), "invalid path_index");
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   659
        return true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   660
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   661
    } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   662
      // Check if this is from a PackageEntry/ModuleEntry defined in the AppClassloader.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   663
      if (pkg_entry == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   664
        // It's not guaranteed that the class is from the classpath if the
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   665
        // PackageEntry cannot be found from the AppClassloader. Need to check
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   666
        // the boot and platform classloader as well.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   667
        if (get_package_entry(pkg_name, ClassLoaderData::class_loader_data_or_null(SystemDictionary::java_platform_loader())) == NULL &&
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   668
            get_package_entry(pkg_name, ClassLoaderData::the_null_class_loader_data()) == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   669
          // The PackageEntry is not defined in any of the boot/platform/app classloaders.
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   670
          // The archived class must from -cp path and not from the runtime image.
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   671
          if (!ent->is_modules_image() && path_index >= ClassLoaderExt::app_class_paths_start_index() &&
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   672
                                          path_index < ClassLoaderExt::app_module_paths_start_index()) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   673
            return true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   674
          }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   675
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   676
      } else if (mod_entry != NULL) {
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   677
        // The package/module is defined in the AppClassLoader. We support
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   678
        // archiving application module class from the runtime image or from
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   679
        // a named module from a module path.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   680
        // Packages from the -cp path are in the unnamed_module.
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   681
        if (ent->is_modules_image() && mod_entry->location()->starts_with("jrt:")) {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   682
          // shared module class from runtime image
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   683
          return true;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   684
        } else if (pkg_entry->in_unnamed_module() && path_index >= ClassLoaderExt::app_class_paths_start_index() &&
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   685
            path_index < ClassLoaderExt::app_module_paths_start_index()) {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   686
          // shared class from -cp
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   687
          DEBUG_ONLY( \
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   688
            ClassLoaderData* loader_data = class_loader_data(class_loader); \
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   689
            assert(mod_entry == loader_data->unnamed_module(), "the unnamed module is not defined in the classloader");)
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   690
          return true;
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   691
        } else {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   692
          if(!pkg_entry->in_unnamed_module() &&
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   693
              (path_index >= ClassLoaderExt::app_module_paths_start_index())&&
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   694
              (path_index < FileMapInfo::get_number_of_shared_paths()) &&
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   695
              (strcmp(ent->name(), ClassLoader::skip_uri_protocol(mod_entry->location()->as_C_string())) == 0)) {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   696
            // shared module class from module path
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   697
            return true;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   698
          } else {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   699
            assert(path_index < FileMapInfo::get_number_of_shared_paths(), "invalid path_index");
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49393
diff changeset
   700
          }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   701
        }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   702
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   703
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   704
  } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   705
    // TEMP: if a shared class can be found by a custom loader, consider it visible now.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   706
    // FIXME: is this actually correct?
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   707
    return true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   708
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   709
  return false;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   710
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   711
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   712
// The following stack shows how this code is reached:
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   713
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   714
//   [0] SystemDictionaryShared::find_or_load_shared_class()
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   715
//   [1] JVM_FindLoadedClass
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   716
//   [2] java.lang.ClassLoader.findLoadedClass0()
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   717
//   [3] java.lang.ClassLoader.findLoadedClass()
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   718
//   [4] jdk.internal.loader.BuiltinClassLoader.loadClassOrNull()
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   719
//   [5] jdk.internal.loader.BuiltinClassLoader.loadClass()
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   720
//   [6] jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(), or
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   721
//       jdk.internal.loader.ClassLoaders$PlatformClassLoader.loadClass()
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   722
//
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   723
// AppCDS supports fast class loading for these 2 built-in class loaders:
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   724
//    jdk.internal.loader.ClassLoaders$PlatformClassLoader
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   725
//    jdk.internal.loader.ClassLoaders$AppClassLoader
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   726
// with the following assumptions (based on the JDK core library source code):
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   727
//
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   728
// [a] these two loaders use the BuiltinClassLoader.loadClassOrNull() to
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   729
//     load the named class.
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   730
// [b] BuiltinClassLoader.loadClassOrNull() first calls findLoadedClass(name).
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   731
// [c] At this point, if we can find the named class inside the
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   732
//     shared_dictionary, we can perform further checks (see
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   733
//     is_shared_class_visible_for_classloader() to ensure that this class
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   734
//     was loaded by the same class loader during dump time.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   735
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   736
// Given these assumptions, we intercept the findLoadedClass() call to invoke
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   737
// SystemDictionaryShared::find_or_load_shared_class() to load the shared class from
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   738
// the archive for the 2 built-in class loaders. This way,
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   739
// we can improve start-up because we avoid decoding the classfile,
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   740
// and avoid delegating to the parent loader.
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   741
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   742
// NOTE: there's a lot of assumption about the Java code. If any of that change, this
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   743
// needs to be redesigned.
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   744
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   745
InstanceKlass* SystemDictionaryShared::find_or_load_shared_class(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   746
                 Symbol* name, Handle class_loader, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   747
  InstanceKlass* k = NULL;
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   748
  if (UseSharedSpaces) {
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
   749
    if (!FileMapInfo::current_info()->header()->has_platform_or_app_classes()) {
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   750
      return NULL;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   751
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   752
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   753
    if (SystemDictionary::is_system_class_loader(class_loader()) ||
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   754
        SystemDictionary::is_platform_class_loader(class_loader())) {
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   755
      // Fix for 4474172; see evaluation for more details
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   756
      class_loader = Handle(
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   757
        THREAD, java_lang_ClassLoader::non_reflection_class_loader(class_loader()));
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   758
      ClassLoaderData *loader_data = register_loader(class_loader);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   759
      Dictionary* dictionary = loader_data->dictionary();
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   760
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   761
      unsigned int d_hash = dictionary->compute_hash(name);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   762
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   763
      bool DoObjectLock = true;
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   764
      if (is_parallelCapable(class_loader)) {
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   765
        DoObjectLock = false;
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   766
      }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   767
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   768
      // Make sure we are synchronized on the class loader before we proceed
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   769
      //
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   770
      // Note: currently, find_or_load_shared_class is called only from
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   771
      // JVM_FindLoadedClass and used for PlatformClassLoader and AppClassLoader,
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   772
      // which are parallel-capable loaders, so this lock is NOT taken.
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   773
      Handle lockObject = compute_loader_lock_object(class_loader, THREAD);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   774
      check_loader_lock_contention(lockObject, THREAD);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   775
      ObjectLocker ol(lockObject, THREAD, DoObjectLock);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   776
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   777
      {
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   778
        MutexLocker mu(SystemDictionary_lock, THREAD);
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
   779
        InstanceKlass* check = find_class(d_hash, name, dictionary);
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   780
        if (check != NULL) {
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
   781
          return check;
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   782
        }
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   783
      }
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   784
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   785
      k = load_shared_class_for_builtin_loader(name, class_loader, THREAD);
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   786
      if (k != NULL) {
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   787
        define_instance_class(k, CHECK_NULL);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   788
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   789
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   790
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   791
  return k;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   792
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   793
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   794
InstanceKlass* SystemDictionaryShared::load_shared_class_for_builtin_loader(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   795
                 Symbol* class_name, Handle class_loader, TRAPS) {
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   796
  assert(UseSharedSpaces, "must be");
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   797
  InstanceKlass* ik = find_builtin_class(class_name);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   798
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
   799
  if (ik != NULL) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   800
    if ((ik->is_shared_app_class() &&
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   801
         SystemDictionary::is_system_class_loader(class_loader()))  ||
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   802
        (ik->is_shared_platform_class() &&
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   803
         SystemDictionary::is_platform_class_loader(class_loader()))) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   804
      Handle protection_domain =
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   805
        SystemDictionaryShared::init_security_info(class_loader, ik, CHECK_NULL);
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   806
      return load_shared_class(ik, class_loader, protection_domain, NULL, THREAD);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   807
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   808
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   809
  return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   810
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   811
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   812
void SystemDictionaryShared::oops_do(OopClosure* f) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   813
  f->do_oop((oop*)&_shared_protection_domains);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   814
  f->do_oop((oop*)&_shared_jar_urls);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   815
  f->do_oop((oop*)&_shared_jar_manifests);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   816
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   817
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   818
void SystemDictionaryShared::allocate_shared_protection_domain_array(int size, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   819
  if (_shared_protection_domains == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   820
    _shared_protection_domains = oopFactory::new_objArray(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   821
        SystemDictionary::ProtectionDomain_klass(), size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   822
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   823
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   824
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   825
void SystemDictionaryShared::allocate_shared_jar_url_array(int size, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   826
  if (_shared_jar_urls == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   827
    _shared_jar_urls = oopFactory::new_objArray(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   828
        SystemDictionary::URL_klass(), size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   829
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   830
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   831
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   832
void SystemDictionaryShared::allocate_shared_jar_manifest_array(int size, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   833
  if (_shared_jar_manifests == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   834
    _shared_jar_manifests = oopFactory::new_objArray(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   835
        SystemDictionary::Jar_Manifest_klass(), size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   836
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   837
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   838
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   839
void SystemDictionaryShared::allocate_shared_data_arrays(int size, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   840
  allocate_shared_protection_domain_array(size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   841
  allocate_shared_jar_url_array(size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   842
  allocate_shared_jar_manifest_array(size, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   843
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   844
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49824
diff changeset
   845
// This function is called for loading only UNREGISTERED classes
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   846
InstanceKlass* SystemDictionaryShared::lookup_from_stream(Symbol* class_name,
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   847
                                                          Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   848
                                                          Handle protection_domain,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   849
                                                          const ClassFileStream* cfs,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   850
                                                          TRAPS) {
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   851
  if (!UseSharedSpaces) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   852
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   853
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   854
  if (class_name == NULL) {  // don't do this for anonymous classes
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   855
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   856
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   857
  if (class_loader.is_null() ||
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   858
      SystemDictionary::is_system_class_loader(class_loader()) ||
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   859
      SystemDictionary::is_platform_class_loader(class_loader())) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   860
    // Do nothing for the BUILTIN loaders.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   861
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   862
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   863
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   864
  const RunTimeSharedClassInfo* record = find_record(&_unregistered_dictionary, class_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   865
  if (record == NULL) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   866
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   867
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   868
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   869
  int clsfile_size  = cfs->length();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   870
  int clsfile_crc32 = ClassLoader::crc32(0, (const char*)cfs->buffer(), cfs->length());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   871
  if (!record->matches(clsfile_size, clsfile_crc32)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   872
    return NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   873
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   874
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   875
  return acquire_class_for_current_thread(record->_klass, class_loader,
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   876
                                          protection_domain, cfs,
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   877
                                          THREAD);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   878
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   879
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   880
InstanceKlass* SystemDictionaryShared::acquire_class_for_current_thread(
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   881
                   InstanceKlass *ik,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   882
                   Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   883
                   Handle protection_domain,
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   884
                   const ClassFileStream *cfs,
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   885
                   TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   886
  ClassLoaderData* loader_data = ClassLoaderData::class_loader_data(class_loader());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   887
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   888
  {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   889
    MutexLocker mu(SharedDictionary_lock, THREAD);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   890
    if (ik->class_loader_data() != NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   891
      //    ik is already loaded (by this loader or by a different loader)
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   892
      // or ik is being loaded by a different thread (by this loader or by a different loader)
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   893
      return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   894
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   895
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   896
    // No other thread has acquired this yet, so give it to *this thread*
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   897
    ik->set_class_loader_data(loader_data);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   898
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   899
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   900
  // No longer holding SharedDictionary_lock
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   901
  // No need to lock, as <ik> can be held only by a single thread.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   902
  loader_data->add_class(ik);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   903
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   904
  // Load and check super/interfaces, restore unsharable info
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   905
  InstanceKlass* shared_klass = load_shared_class(ik, class_loader, protection_domain,
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53249
diff changeset
   906
                                                  cfs, THREAD);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   907
  if (shared_klass == NULL || HAS_PENDING_EXCEPTION) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   908
    // TODO: clean up <ik> so it can be used again
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   909
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   910
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   911
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   912
  return shared_klass;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   913
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   914
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   915
static ResourceHashtable<
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   916
  Symbol*, bool,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   917
  primitive_hash<Symbol*>,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   918
  primitive_equals<Symbol*>,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   919
  6661,                             // prime number
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   920
  ResourceObj::C_HEAP> _loaded_unregistered_classes;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   921
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   922
bool SystemDictionaryShared::add_unregistered_class(InstanceKlass* k, TRAPS) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   923
  assert(DumpSharedSpaces, "only when dumping");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   924
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   925
  Symbol* name = k->name();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   926
  if (_loaded_unregistered_classes.get(name) != NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   927
    // We don't allow duplicated unregistered classes of the same name.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   928
    return false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   929
  } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   930
    bool isnew = _loaded_unregistered_classes.put(name, true);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   931
    assert(isnew, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   932
    MutexLocker mu_r(Compile_lock, THREAD); // add_to_hierarchy asserts this.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   933
    SystemDictionary::add_to_hierarchy(k, CHECK_0);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   934
    return true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   935
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   936
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   937
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   938
// This function is called to resolve the super/interfaces of shared classes for
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   939
// non-built-in loaders. E.g., ChildClass in the below example
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   940
// where "super:" (and optionally "interface:") have been specified.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   941
//
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   942
// java/lang/Object id: 0
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   943
// Interface   id: 2 super: 0 source: cust.jar
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   944
// ChildClass  id: 4 super: 0 interfaces: 2 source: cust.jar
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
   945
InstanceKlass* SystemDictionaryShared::dump_time_resolve_super_or_fail(
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   946
    Symbol* child_name, Symbol* class_name, Handle class_loader,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   947
    Handle protection_domain, bool is_superclass, TRAPS) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   948
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   949
  assert(DumpSharedSpaces, "only when dumping");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   950
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   951
  ClassListParser* parser = ClassListParser::instance();
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   952
  if (parser == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   953
    // We're still loading the well-known classes, before the ClassListParser is created.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   954
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   955
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   956
  if (child_name->equals(parser->current_class_name())) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   957
    // When this function is called, all the numbered super and interface types
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   958
    // must have already been loaded. Hence this function is never recursively called.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   959
    if (is_superclass) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   960
      return parser->lookup_super_for_current_class(class_name);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   961
    } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   962
      return parser->lookup_interface_for_current_class(class_name);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   963
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   964
  } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   965
    // The VM is not trying to resolve a super type of parser->current_class_name().
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   966
    // Instead, it's resolving an error class (because parser->current_class_name() has
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   967
    // failed parsing or verification). Don't do anything here.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   968
    return NULL;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   969
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   970
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   971
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   972
DumpTimeSharedClassInfo* SystemDictionaryShared::find_or_allocate_info_for(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   973
  if (_dumptime_table == NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   974
    _dumptime_table = new (ResourceObj::C_HEAP, mtClass)DumpTimeSharedClassTable();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   975
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   976
  return _dumptime_table->find_or_allocate_info_for(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   977
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   978
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
   979
void SystemDictionaryShared::set_shared_class_misc_info(InstanceKlass* k, ClassFileStream* cfs) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   980
  assert(DumpSharedSpaces, "only when dumping");
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   981
  assert(!is_builtin(k), "must be unregistered class");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   982
  DumpTimeSharedClassInfo* info = find_or_allocate_info_for(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   983
  info->_clsfile_size  = cfs->length();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   984
  info->_clsfile_crc32 = ClassLoader::crc32(0, (const char*)cfs->buffer(), cfs->length());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   985
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   986
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   987
void SystemDictionaryShared::init_dumptime_info(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   988
  (void)find_or_allocate_info_for(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   989
}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   990
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   991
void SystemDictionaryShared::remove_dumptime_info(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   992
  _dumptime_table->remove(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   993
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
   994
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   995
bool SystemDictionaryShared::is_jfr_event_class(InstanceKlass *k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   996
  while (k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   997
    if (k->name()->equals("jdk/internal/event/Event")) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   998
      return true;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
   999
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1000
    k = k->java_super();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1001
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1002
  return false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1003
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1004
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1005
void SystemDictionaryShared::warn_excluded(InstanceKlass* k, const char* reason) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1006
  ResourceMark rm;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1007
  log_warning(cds)("Skipping %s: %s", k->name()->as_C_string(), reason);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1008
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1009
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1010
bool SystemDictionaryShared::should_be_excluded(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1011
  if (k->class_loader_data()->is_unsafe_anonymous()) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1012
    return true; // unsafe anonymous classes are not archived, skip
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1013
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1014
  if (k->is_in_error_state()) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1015
    return true;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1016
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1017
  if (k->shared_classpath_index() < 0 && is_builtin(k)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1018
    // These are classes loaded from unsupported locations (such as those loaded by JVMTI native
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1019
    // agent during dump time).
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1020
    warn_excluded(k, "Unsupported location");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1021
    return true;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1022
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1023
  if (k->signers() != NULL) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1024
    // We cannot include signed classes in the archive because the certificates
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1025
    // used during dump time may be different than those used during
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1026
    // runtime (due to expiration, etc).
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1027
    warn_excluded(k, "Signed JAR");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1028
    return true;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1029
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1030
  if (is_jfr_event_class(k)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1031
    // We cannot include JFR event classes because they need runtime-specific
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1032
    // instrumentation in order to work with -XX:FlightRecorderOptions=retransform=false.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1033
    // There are only a small number of these classes, so it's not worthwhile to
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1034
    // support them and make CDS more complicated.
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1035
    warn_excluded(k, "JFR event class");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1036
    return true;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1037
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1038
  return false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1039
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1040
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1041
// k is a class before relocating by ArchiveCompactor
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1042
void SystemDictionaryShared::validate_before_archiving(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1043
  ResourceMark rm;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1044
  const char* name = k->name()->as_C_string();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1045
  DumpTimeSharedClassInfo* info = _dumptime_table->get(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1046
  guarantee(info != NULL, "Class %s must be entered into _dumptime_table", name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1047
  guarantee(!info->_excluded, "Should not attempt to archive excluded class %s", name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1048
  if (is_builtin(k)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1049
    guarantee(k->loader_type() != 0,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1050
              "Class loader type must be set for BUILTIN class %s", name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1051
  } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1052
    guarantee(k->loader_type() == 0,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1053
              "Class loader type must not be set for UNREGISTERED class %s", name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1054
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1055
}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1056
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1057
class ExcludeDumpTimeSharedClasses : StackObj {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1058
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1059
  bool do_entry(InstanceKlass* k, DumpTimeSharedClassInfo& info) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1060
    if (SystemDictionaryShared::should_be_excluded(k)) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1061
      info._excluded = true;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1062
    }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1063
    return true; // keep on iterating
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1064
  }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1065
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1066
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1067
void SystemDictionaryShared::check_excluded_classes() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1068
  ExcludeDumpTimeSharedClasses excl;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1069
  _dumptime_table->iterate(&excl);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1070
  DEBUG_ONLY(_checked_excluded_classes = true;)
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1071
}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1072
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1073
bool SystemDictionaryShared::is_excluded_class(InstanceKlass* k) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1074
  assert(_checked_excluded_classes, "sanity");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1075
  assert(DumpSharedSpaces, "only when dumping");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1076
  return find_or_allocate_info_for(k)->_excluded;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1077
}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1078
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1079
class IterateDumpTimeSharedClassTable : StackObj {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1080
  MetaspaceClosure *_it;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1081
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1082
  IterateDumpTimeSharedClassTable(MetaspaceClosure* it) : _it(it) {}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1083
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1084
  bool do_entry(InstanceKlass* k, DumpTimeSharedClassInfo& info) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1085
    if (!info._excluded) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1086
      info.metaspace_pointers_do(_it);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1087
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1088
    return true; // keep on iterating
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1089
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1090
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1091
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1092
void SystemDictionaryShared::dumptime_classes_do(class MetaspaceClosure* it) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1093
  IterateDumpTimeSharedClassTable iter(it);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1094
  _dumptime_table->iterate(&iter);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1095
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1096
51329
9c68699bebe5 8208999: Some use of Klass* should be replaced by InstanceKlass*
iklam
parents: 51070
diff changeset
  1097
bool SystemDictionaryShared::add_verification_constraint(InstanceKlass* k, Symbol* name,
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1098
         Symbol* from_name, bool from_field_is_protected, bool from_is_array, bool from_is_object) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1099
  assert(DumpSharedSpaces, "called at dump time only");
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1100
  DumpTimeSharedClassInfo* info = find_or_allocate_info_for(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1101
  info->add_verification_constraint(k, name, from_name, from_field_is_protected,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1102
                                    from_is_array, from_is_object);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1103
  if (is_builtin(k)) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1104
    // For builtin class loaders, we can try to complete the verification check at dump time,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1105
    // because we can resolve all the constraint classes.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1106
    return false;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1107
  } else {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1108
    // For non-builtin class loaders, we cannot complete the verification check at dump time,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1109
    // because at dump time we don't know how to resolve classes for such loaders.
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1110
    return true;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1111
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1112
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1113
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1114
void DumpTimeSharedClassInfo::add_verification_constraint(InstanceKlass* k, Symbol* name,
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1115
         Symbol* from_name, bool from_field_is_protected, bool from_is_array, bool from_is_object) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1116
  if (_verifier_constraints == NULL) {
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1117
    _verifier_constraints = new(ResourceObj::C_HEAP, mtClass) GrowableArray<DTConstraint>(4, true, mtClass);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1118
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1119
  if (_verifier_constraint_flags == NULL) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1120
    _verifier_constraint_flags = new(ResourceObj::C_HEAP, mtClass) GrowableArray<char>(4, true, mtClass);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1121
  }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1122
  GrowableArray<DTConstraint>* vc_array = _verifier_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1123
  for (int i = 0; i < vc_array->length(); i++) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1124
    DTConstraint* p = vc_array->adr_at(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1125
    if (name == p->_name && from_name == p->_from_name) {
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1126
      return;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1127
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1128
  }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1129
  DTConstraint cons(name, from_name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1130
  vc_array->append(cons);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1131
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1132
  GrowableArray<char>* vcflags_array = _verifier_constraint_flags;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1133
  char c = 0;
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1134
  c |= from_field_is_protected ? SystemDictionaryShared::FROM_FIELD_IS_PROTECTED : 0;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1135
  c |= from_is_array           ? SystemDictionaryShared::FROM_IS_ARRAY           : 0;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1136
  c |= from_is_object          ? SystemDictionaryShared::FROM_IS_OBJECT          : 0;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1137
  vcflags_array->append(c);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1139
  if (log_is_enabled(Trace, cds, verification)) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1140
    ResourceMark rm;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1141
    log_trace(cds, verification)("add_verification_constraint: %s: %s must be subclass of %s",
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1142
                                 k->external_name(), from_name->as_klass_external_name(),
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1143
                                 name->as_klass_external_name());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1144
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1145
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1146
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1147
void SystemDictionaryShared::check_verification_constraints(InstanceKlass* klass,
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1148
                                                            TRAPS) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1149
  assert(!DumpSharedSpaces && UseSharedSpaces, "called at run time with CDS enabled only");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1150
  RunTimeSharedClassInfo* record = RunTimeSharedClassInfo::get_for(klass);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1151
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1152
  int length = record->_num_constraints;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1153
  if (length > 0) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1154
    for (int i = 0; i < length; i++) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1155
      Symbol* name      = record->get_constraint_name(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1156
      Symbol* from_name = record->get_constraint_from_name(i);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1157
      char c            = record->get_constraint_flag(i);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1158
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1159
      bool from_field_is_protected = (c & SystemDictionaryShared::FROM_FIELD_IS_PROTECTED) ? true : false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1160
      bool from_is_array           = (c & SystemDictionaryShared::FROM_IS_ARRAY)           ? true : false;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1161
      bool from_is_object          = (c & SystemDictionaryShared::FROM_IS_OBJECT)          ? true : false;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1162
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1163
      bool ok = VerificationType::resolve_and_check_assignability(klass, name,
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1164
         from_name, from_field_is_protected, from_is_array, from_is_object, CHECK);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1165
      if (!ok) {
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1166
        ResourceMark rm(THREAD);
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1167
        stringStream ss;
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1168
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1169
        ss.print_cr("Bad type on operand stack");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1170
        ss.print_cr("Exception Details:");
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1171
        ss.print_cr("  Location:\n    %s", klass->name()->as_C_string());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1172
        ss.print_cr("  Reason:\n    Type '%s' is not assignable to '%s'",
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1173
                    from_name->as_quoted_ascii(), name->as_quoted_ascii());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1174
        THROW_MSG(vmSymbols::java_lang_VerifyError(), ss.as_string());
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1175
      }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1176
    }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1177
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1178
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1179
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1180
class CopySharedClassInfoToArchive : StackObj {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1181
  CompactHashtableWriter* _writer;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1182
  bool _is_builtin;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1183
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1184
  CopySharedClassInfoToArchive(CompactHashtableWriter* writer, bool is_builtin)
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1185
    : _writer(writer), _is_builtin(is_builtin) {}
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1186
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1187
  bool do_entry(InstanceKlass* k, DumpTimeSharedClassInfo& info) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1188
    if (!info._excluded && info.is_builtin() == _is_builtin) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1189
      size_t byte_size = RunTimeSharedClassInfo::byte_size(info._klass, info.num_constraints());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1190
      RunTimeSharedClassInfo* record =
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1191
        (RunTimeSharedClassInfo*)MetaspaceShared::read_only_space_alloc(byte_size);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1192
      record->init(info);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1193
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1194
      unsigned int hash = primitive_hash<Symbol*>(info._klass->name());
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1195
      _writer->add(hash, MetaspaceShared::object_delta_u4(record));
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1196
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1197
      // Save this for quick runtime lookup of InstanceKlass* -> RunTimeSharedClassInfo*
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1198
      RunTimeSharedClassInfo::set_for(info._klass, record);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1199
    }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1200
    return true; // keep on iterating
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1201
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1202
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1203
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1204
void SystemDictionaryShared::write_dictionary(RunTimeSharedDictionary* dictionary, bool is_builtin) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1205
  CompactHashtableStats stats;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1206
  dictionary->reset();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1207
  int num_buckets = CompactHashtableWriter::default_num_buckets(_dumptime_table->count_of(is_builtin));
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1208
  CompactHashtableWriter writer(num_buckets, &stats);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1209
  CopySharedClassInfoToArchive copy(&writer, is_builtin);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1210
  _dumptime_table->iterate(&copy);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1211
  writer.dump(dictionary, is_builtin ? "builtin dictionary" : "unregistered dictionary");
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1212
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1213
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1214
void SystemDictionaryShared::write_to_archive() {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1215
  _dumptime_table->update_counts();
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1216
  write_dictionary(&_builtin_dictionary, true);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1217
  write_dictionary(&_unregistered_dictionary, false);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1218
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1219
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1220
void SystemDictionaryShared::serialize_dictionary_headers(SerializeClosure* soc) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1221
  _builtin_dictionary.serialize_header(soc);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1222
  _unregistered_dictionary.serialize_header(soc);
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1223
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1224
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1225
const RunTimeSharedClassInfo*
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1226
SystemDictionaryShared::find_record(RunTimeSharedDictionary* dict, Symbol* name) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1227
  if (UseSharedSpaces) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1228
    unsigned int hash = primitive_hash<Symbol*>(name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1229
    return dict->lookup(name, hash, 0);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1230
  } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1231
    return NULL;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1232
  }
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1233
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1234
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1235
InstanceKlass* SystemDictionaryShared::find_builtin_class(Symbol* name) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1236
  const RunTimeSharedClassInfo* record = find_record(&_builtin_dictionary, name);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1237
  if (record) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1238
    return record->_klass;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1239
  } else {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1240
    return NULL;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1241
  }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1242
}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1243
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1244
void SystemDictionaryShared::update_shared_entry(InstanceKlass* k, int id) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1245
  assert(DumpSharedSpaces, "supported only when dumping");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1246
  DumpTimeSharedClassInfo* info = find_or_allocate_info_for(k);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1247
  info->_id = id;
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1248
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1249
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1250
class SharedDictionaryPrinter : StackObj {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1251
  outputStream* _st;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1252
  int _index;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1253
public:
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1254
  SharedDictionaryPrinter(outputStream* st) : _st(st), _index(0) {}
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1255
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1256
  void do_value(const RunTimeSharedClassInfo* record) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1257
    ResourceMark rm;
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1258
    _st->print_cr("%4d:  %s", (_index++), record->_klass->external_name());
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1259
  }
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1260
};
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1261
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1262
void SystemDictionaryShared::print_on(outputStream* st) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1263
  if (UseSharedSpaces) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1264
    st->print_cr("Shared Dictionary");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1265
    SharedDictionaryPrinter p(st);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1266
    _builtin_dictionary.iterate(&p);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1267
    _unregistered_dictionary.iterate(&p);
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1268
  }
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1269
}
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1270
52514
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1271
void SystemDictionaryShared::print_table_statistics(outputStream* st) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1272
  if (UseSharedSpaces) {
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1273
    _builtin_dictionary.print_table_statistics(st, "Builtin Shared Dictionary");
f4e3900c8d08 8213346: Re-implement shared dictionary using CompactHashtable
iklam
parents: 52468
diff changeset
  1274
    _unregistered_dictionary.print_table_statistics(st, "Unregistered Shared Dictionary");
48138
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1275
  }
78b2ecdd3c4b 8188791: Move AppCDS from closed repo to open repo
iklam
parents:
diff changeset
  1276
}