src/hotspot/share/classfile/classLoader.hpp
author ihse
Tue, 21 Nov 2017 15:02:17 +0100
changeset 48011 dac108a7b06a
parent 47991 a474466c4fdb
child 48115 d8ec0640616c
permissions -rw-r--r--
8191203: Remove duplicated jimage.hpp Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 42876
diff changeset
     2
 * Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3795
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_CLASSFILE_CLASSLOADER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_CLASSFILE_CLASSLOADER_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
48011
dac108a7b06a 8191203: Remove duplicated jimage.hpp
ihse
parents: 47991
diff changeset
    28
#include "jimage.hpp"
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    29
#include "runtime/orderAccess.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/perfData.hpp"
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    31
#include "utilities/exceptions.hpp"
27683
1d5707553fff 8064580: Move INCLUDE_CDS include section to the end of the include list
stefank
parents: 27025
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The VM class loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    37
// Name of boot "modules" image
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    38
#define  MODULES_IMAGE_NAME "modules"
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    39
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    40
// Class path entry (directory or zip file)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
    42
class JImageFile;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    43
class ClassFileStream;
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
    44
class PackageEntry;
31608
b5cb9a07591a 8080511: Refresh of jimage support
jfdenise
parents: 29076
diff changeset
    45
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    46
class ClassPathEntry : public CHeapObj<mtClass> {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    47
private:
40887
8d35e19f5548 8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents: 40244
diff changeset
    48
  ClassPathEntry* volatile _next;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    49
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Next entry in class path
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47564
diff changeset
    51
  ClassPathEntry* next() const { return OrderAccess::load_acquire(&_next); }
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
    52
  virtual ~ClassPathEntry() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  void set_next(ClassPathEntry* next) {
40887
8d35e19f5548 8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents: 40244
diff changeset
    54
    // may have unlocked readers, so ensure visibility.
47634
6a0c42c40cd1 8188220: Remove Atomic::*_ptr() uses and overloads from hotspot
coleenp
parents: 47564
diff changeset
    55
    OrderAccess::release_store(&_next, next);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
    57
  virtual bool is_modules_image() const = 0;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    58
  virtual bool is_jar_file() const = 0;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    59
  virtual const char* name() const = 0;
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    60
  virtual JImageFile* jimage() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // Constructor
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    62
  ClassPathEntry() : _next(NULL) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // Attempt to locate file_name through this class path entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Returns a class file parsing stream if successfull.
19685
3df9b00b5d5f 8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents: 17004
diff changeset
    65
  virtual ClassFileStream* open_stream(const char* name, TRAPS) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  NOT_PRODUCT(virtual void compile_the_world(Handle loader, TRAPS) = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
class ClassPathDirEntry: public ClassPathEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
 private:
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
    72
  const char* _dir;           // Name of directory
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
 public:
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
    74
  bool is_modules_image() const { return false; }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    75
  bool is_jar_file() const { return false;  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    76
  const char* name() const { return _dir; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    77
  JImageFile* jimage() const { return NULL; }
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
    78
  ClassPathDirEntry(const char* dir);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
    79
  virtual ~ClassPathDirEntry() {}
19685
3df9b00b5d5f 8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents: 17004
diff changeset
    80
  ClassFileStream* open_stream(const char* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// Type definitions for zip file and zip file entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
typedef void* jzfile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  char *name;                   /* entry name */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  jlong time;                   /* modification time */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  jlong size;                   /* size of uncompressed data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  jlong csize;                  /* size of compressed data (zero if uncompressed) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  jint crc;                     /* crc of uncompressed data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  char *comment;                /* optional zip file comment */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  jbyte *extra;                 /* optional extra data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  jlong pos;                    /* position of LOC header (if negative) or data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
} jzentry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
class ClassPathZipEntry: public ClassPathEntry {
37418
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   100
 enum {
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   101
   _unknown = 0,
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   102
   _yes     = 1,
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   103
   _no      = 2
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   104
 };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
 private:
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   106
  jzfile* _zip;              // The zip archive
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   107
  const char*   _zip_name;   // Name of zip archive
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   108
  bool _is_boot_append;      // entry coming from -Xbootclasspath/a
37418
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   109
  u1 _multi_versioned;       // indicates if the jar file has multi-versioned entries.
ebb041956080 8152329: jvm should treat the "Multi-Release" jar manifest attribute name as case insensitive
ccheung
parents: 37220
diff changeset
   110
                             // It can have value of "_unknown", "_yes", or "_no"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
 public:
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
   112
  bool is_modules_image() const { return false; }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   113
  bool is_jar_file() const { return true;  }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   114
  const char* name() const { return _zip_name; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   115
  JImageFile* jimage() const { return NULL; }
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   116
  ClassPathZipEntry(jzfile* zip, const char* zip_name, bool is_boot_append);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
   117
  virtual ~ClassPathZipEntry();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   118
  u1* open_entry(const char* name, jint* filesize, bool nul_terminate, TRAPS);
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   119
  u1* open_versioned_entry(const char* name, jint* filesize, TRAPS) NOT_CDS_RETURN_(NULL);
19685
3df9b00b5d5f 8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents: 17004
diff changeset
   120
  ClassFileStream* open_stream(const char* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void contents_do(void f(const char* name, void* context), void* context);
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   122
  bool is_multiple_versioned(TRAPS) NOT_CDS_RETURN_(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   128
// For java image files
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   129
class ClassPathImageEntry: public ClassPathEntry {
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   130
private:
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   131
  JImageFile* _jimage;
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   132
  const char* _name;
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   133
public:
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
   134
  bool is_modules_image() const;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   135
  bool is_jar_file() const { return false; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   136
  bool is_open() const { return _jimage != NULL; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   137
  const char* name() const { return _name == NULL ? "" : _name; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   138
  JImageFile* jimage() const { return _jimage; }
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   139
  ClassPathImageEntry(JImageFile* jimage, const char* name);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
   140
  virtual ~ClassPathImageEntry();
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   141
  ClassFileStream* open_stream(const char* name, TRAPS);
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   142
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   143
  // Debugging
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   144
  NOT_PRODUCT(void compile_the_world(Handle loader, TRAPS);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   147
// ModuleClassPathList contains a linked list of ClassPathEntry's
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   148
// that have been specified for a specific module.  Currently,
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   149
// the only way to specify a module/path pair is via the --patch-module
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   150
// command line option.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   151
class ModuleClassPathList : public CHeapObj<mtClass> {
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   152
private:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   153
  Symbol* _module_name;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   154
  // First and last entries of class path entries for a specific module
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   155
  ClassPathEntry* _module_first_entry;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   156
  ClassPathEntry* _module_last_entry;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   157
public:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   158
  Symbol* module_name() const { return _module_name; }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   159
  ClassPathEntry* module_first_entry() const { return _module_first_entry; }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   160
  ModuleClassPathList(Symbol* module_name);
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   161
  ~ModuleClassPathList();
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   162
  void add_to_list(ClassPathEntry* new_entry);
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   163
};
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   164
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   165
class SharedPathsMiscInfo;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
class ClassLoader: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
 public:
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   169
  enum ClassLoaderType {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   170
    BOOT_LOADER = 1,      /* boot loader */
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   171
    PLATFORM_LOADER  = 2, /* PlatformClassLoader */
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   172
    APP_LOADER  = 3       /* AppClassLoader */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  };
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   174
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  static PerfCounter* _perf_accumulated_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  static PerfCounter* _perf_classes_inited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  static PerfCounter* _perf_class_init_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   180
  static PerfCounter* _perf_class_init_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   181
  static PerfCounter* _perf_classes_verified;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  static PerfCounter* _perf_class_verify_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   183
  static PerfCounter* _perf_class_verify_selftime;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  static PerfCounter* _perf_classes_linked;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static PerfCounter* _perf_class_link_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   186
  static PerfCounter* _perf_class_link_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   187
  static PerfCounter* _perf_class_parse_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   188
  static PerfCounter* _perf_class_parse_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   189
  static PerfCounter* _perf_sys_class_lookup_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   190
  static PerfCounter* _perf_shared_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   191
  static PerfCounter* _perf_sys_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   192
  static PerfCounter* _perf_app_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   193
  static PerfCounter* _perf_app_classload_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   194
  static PerfCounter* _perf_app_classload_count;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   195
  static PerfCounter* _perf_define_appclasses;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   196
  static PerfCounter* _perf_define_appclass_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   197
  static PerfCounter* _perf_define_appclass_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   198
  static PerfCounter* _perf_app_classfile_bytes_read;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   199
  static PerfCounter* _perf_sys_classfile_bytes_read;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  static PerfCounter* _sync_systemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  static PerfCounter* _sync_nonSystemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  static PerfCounter* _sync_JVMFindLoadedClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  static PerfCounter* _sync_JVMDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  static PerfCounter* _sync_JNIDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  static PerfCounter* _unsafe_defineClassCallCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  static PerfCounter* _isUnsyncloadClass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static PerfCounter* _load_instance_class_failCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   211
  // The boot class path consists of 3 ordered pieces:
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   212
  //  1. the module/path pairs specified to --patch-module
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   213
  //    --patch-module=<module>=<file>(<pathsep><file>)*
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   214
  //  2. the base piece
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   215
  //    [jimage | build with exploded modules]
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   216
  //  3. boot loader append path
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   217
  //    [-Xbootclasspath/a]; [jvmti appended entries]
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   218
  //
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   219
  // The boot loader must obey this order when attempting
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   220
  // to load a class.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   221
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   222
  // 1. Contains the module/path pairs specified to --patch-module
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   223
  static GrowableArray<ModuleClassPathList*>* _patch_mod_entries;
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   224
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   225
  // 2. the base piece
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   226
  //    Contains the ClassPathEntry of the modular java runtime image.
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   227
  //    If no java runtime image is present, this indicates a
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   228
  //    build with exploded modules is being used instead.
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   229
  static ClassPathEntry* _jrt_entry;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   230
  static GrowableArray<ModuleClassPathList*>* _exploded_entries;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   231
  enum { EXPLODED_ENTRY_SIZE = 80 }; // Initial number of exploded modules
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   232
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   233
  // 3. the boot loader's append path
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   234
  //    [-Xbootclasspath/a]; [jvmti appended entries]
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   235
  //    Note: boot loader append path does not support named modules.
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   236
  static ClassPathEntry* _first_append_entry;
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   237
  // Last entry in linked list of appended ClassPathEntry instances
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   238
  static ClassPathEntry* _last_append_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   240
  // Array of module names associated with the boot class loader
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   241
  CDS_ONLY(static GrowableArray<char*>* _boot_modules_array;)
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   242
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   243
  // Array of module names associated with the platform class loader
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   244
  CDS_ONLY(static GrowableArray<char*>* _platform_modules_array;)
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   245
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   246
  // Info used by CDS
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   247
  CDS_ONLY(static SharedPathsMiscInfo * _shared_paths_misc_info;)
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   248
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   249
  CDS_ONLY(static ClassPathEntry* _app_classpath_entries;)
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   250
  CDS_ONLY(static ClassPathEntry* _last_app_classpath_entry;)
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   251
  CDS_ONLY(static void setup_app_search_path(const char *class_path);)
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   252
  static void add_to_app_classpath_entries(const char* path,
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   253
                                           ClassPathEntry* entry,
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   254
                                           bool check_for_duplicates);
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   255
 public:
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   256
  CDS_ONLY(static ClassPathEntry* app_classpath_entries() {return _app_classpath_entries;})
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   257
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   258
 protected:
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   259
  // Initialization:
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   260
  //   - setup the boot loader's system class path
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   261
  //   - setup the boot loader's patch mod entries, if present
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   262
  //   - create the ModuleEntry for java.base
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  static void setup_bootstrap_search_path();
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   264
  static void setup_boot_search_path(const char *class_path);
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   265
  static void setup_patch_mod_entries();
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   266
  static void create_javabase();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   267
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  static void load_zip_library();
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   269
  static void load_jimage_library();
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   270
  static ClassPathEntry* create_class_path_entry(const char *path, const struct stat* st,
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   271
                                                 bool throw_exception,
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   272
                                                 bool is_boot_append, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   274
 public:
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   275
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   276
  // If the package for the fully qualified class name is in the boot
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   277
  // loader's package entry table then add_package() sets the classpath_index
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   278
  // field so that get_system_package() will know to return a non-null value
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   279
  // for the package's location.  And, so that the package will be added to
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   280
  // the list of packages returned by get_system_packages().
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   281
  // For packages whose classes are loaded from the boot loader class path, the
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   282
  // classpath_index indicates which entry on the boot loader class path.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   283
  static bool add_package(const char *fullq_class_name, s2 classpath_index, TRAPS);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   284
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  // Canonicalizes path names, so strcmp will work properly. This is mainly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // to avoid confusing the zip library
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   287
  static bool get_canonical_path(const char* orig, char* out, int len);
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   288
  static const char* file_name_for_class_name(const char* class_name,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   289
                                              int class_name_len);
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
   290
  static PackageEntry* get_package_entry(const char* class_name, ClassLoaderData* loader_data, TRAPS);
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
 public:
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   293
  static jboolean decompress(void *in, u8 inSize, void *out, u8 outSize, char **pmsg);
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26419
diff changeset
   294
  static int crc32(int crc, const char* buf, int len);
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   295
  static bool update_class_path_entry_list(const char *path,
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   296
                                           bool check_for_duplicates,
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   297
                                           bool is_boot_append,
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   298
                                           bool throw_exception=true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  static void print_bootclasspath();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Timing
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   302
  static PerfCounter* perf_accumulated_time()         { return _perf_accumulated_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   303
  static PerfCounter* perf_classes_inited()           { return _perf_classes_inited; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   304
  static PerfCounter* perf_class_init_time()          { return _perf_class_init_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   305
  static PerfCounter* perf_class_init_selftime()      { return _perf_class_init_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   306
  static PerfCounter* perf_classes_verified()         { return _perf_classes_verified; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   307
  static PerfCounter* perf_class_verify_time()        { return _perf_class_verify_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   308
  static PerfCounter* perf_class_verify_selftime()    { return _perf_class_verify_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   309
  static PerfCounter* perf_classes_linked()           { return _perf_classes_linked; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   310
  static PerfCounter* perf_class_link_time()          { return _perf_class_link_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   311
  static PerfCounter* perf_class_link_selftime()      { return _perf_class_link_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   312
  static PerfCounter* perf_class_parse_time()         { return _perf_class_parse_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   313
  static PerfCounter* perf_class_parse_selftime()     { return _perf_class_parse_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   314
  static PerfCounter* perf_sys_class_lookup_time()    { return _perf_sys_class_lookup_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   315
  static PerfCounter* perf_shared_classload_time()    { return _perf_shared_classload_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   316
  static PerfCounter* perf_sys_classload_time()       { return _perf_sys_classload_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   317
  static PerfCounter* perf_app_classload_time()       { return _perf_app_classload_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   318
  static PerfCounter* perf_app_classload_selftime()   { return _perf_app_classload_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   319
  static PerfCounter* perf_app_classload_count()      { return _perf_app_classload_count; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   320
  static PerfCounter* perf_define_appclasses()        { return _perf_define_appclasses; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   321
  static PerfCounter* perf_define_appclass_time()     { return _perf_define_appclass_time; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   322
  static PerfCounter* perf_define_appclass_selftime() { return _perf_define_appclass_selftime; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   323
  static PerfCounter* perf_app_classfile_bytes_read() { return _perf_app_classfile_bytes_read; }
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   324
  static PerfCounter* perf_sys_classfile_bytes_read() { return _perf_sys_classfile_bytes_read; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Record how often system loader lock object is contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  static PerfCounter* sync_systemLoaderLockContentionRate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    return _sync_systemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // Record how often non system loader lock object is contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  static PerfCounter* sync_nonSystemLoaderLockContentionRate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    return _sync_nonSystemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Record how many calls to JVM_FindLoadedClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  static PerfCounter* sync_JVMFindLoadedClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    return _sync_JVMFindLoadedClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Record how many calls to JVM_DefineClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  static PerfCounter* sync_JVMDefineClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    return _sync_JVMDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  // Record how many calls to jni_DefineClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  static PerfCounter* sync_JNIDefineClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
    return _sync_JNIDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // Record how many calls to Unsafe_DefineClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  static PerfCounter* unsafe_defineClassCallCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    return _unsafe_defineClassCallCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Record how many times SystemDictionary::load_instance_class call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // fails with linkageError when Unsyncloadclass flag is set.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  static PerfCounter* load_instance_class_failCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    return _load_instance_class_failCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   362
  // Modular java runtime image is present vs. a build with exploded modules
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   363
  static bool has_jrt_entry() { return (_jrt_entry != NULL); }
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   364
  static ClassPathEntry* get_jrt_entry() { return _jrt_entry; }
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   365
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   366
  // Add a module's exploded directory to the boot loader's exploded module build list
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   367
  static void add_to_exploded_build_list(Symbol* module_name, TRAPS);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   368
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   369
  // Attempt load of individual class from either the patched or exploded modules build lists
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   370
  static ClassFileStream* search_module_entries(const GrowableArray<ModuleClassPathList*>* const module_list,
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   371
                                                const char* const class_name,
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   372
                                                const char* const file_name, TRAPS);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   373
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // Load individual .class file
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 42876
diff changeset
   375
  static InstanceKlass* load_class(Symbol* class_name, bool search_append_only, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // If the specified package has been loaded by the system, then returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // the name of the directory or ZIP file that the package was loaded from.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // Returns null if the package was not loaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // Note: The specified name can either be the name of a class or package.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // If a package name is specified, then it must be "/"-separator and also
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // end with a trailing "/".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  static oop get_system_package(const char* name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // Returns an array of Java strings representing all of the currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // loaded system packages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // Note: The package names returned are "/"-separated and end with a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // trailing "/".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  static objArrayOop get_system_packages(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  static void initialize();
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   393
  static void classLoader_init2(TRAPS);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   394
  CDS_ONLY(static void initialize_shared_path();)
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   395
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  static int compute_Object_vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  static ClassPathEntry* classpath_entry(int n) {
47534
a9b5df78f0f2 8187436: -Xbootclasspath/a causes sanity check assertion with exploded build
hseigel
parents: 47216
diff changeset
   399
    assert(n >= 0, "sanity");
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   400
    if (n == 0) {
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   401
      assert(has_jrt_entry(), "No class path entry at 0 for exploded module builds");
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   402
      return ClassLoader::_jrt_entry;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   403
    } else {
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   404
      // The java runtime image is always the first entry
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   405
      // in the FileMapInfo::_classpath_entry_table. Even though
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   406
      // the _jrt_entry is not included in the _first_append_entry
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   407
      // linked list, it must be accounted for when comparing the
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   408
      // class path vs. the shared archive class path.
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   409
      ClassPathEntry* e = ClassLoader::_first_append_entry;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   410
      while (--n >= 1) {
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   411
        assert(e != NULL, "Not that many classpath entries.");
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   412
        e = e->next();
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   413
      }
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   414
      return e;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
42634
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 41741
diff changeset
   418
  static bool is_in_patch_mod_entries(Symbol* module_name);
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 41741
diff changeset
   419
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   420
#if INCLUDE_CDS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // Sharing dump and restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   423
  // Helper function used by CDS code to get the number of boot classpath
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   424
  // entries during shared classpath setup time.
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   425
  static int num_boot_classpath_entries() {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   426
    assert(DumpSharedSpaces, "Should only be called at CDS dump time");
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   427
    assert(has_jrt_entry(), "must have a java runtime image");
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   428
    int num_entries = 1; // count the runtime image
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   429
    ClassPathEntry* e = ClassLoader::_first_append_entry;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   430
    while (e != NULL) {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   431
      num_entries ++;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   432
      e = e->next();
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   433
    }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   434
    return num_entries;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   435
  }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   436
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   437
  static ClassPathEntry* get_next_boot_classpath_entry(ClassPathEntry* e) {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   438
    if (e == ClassLoader::_jrt_entry) {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   439
      return ClassLoader::_first_append_entry;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   440
    } else {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   441
      return e->next();
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   442
    }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   443
  }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   444
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   445
  // Helper function used by CDS code to get the number of app classpath
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   446
  // entries during shared classpath setup time.
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   447
  static int num_app_classpath_entries() {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   448
    assert(DumpSharedSpaces, "Should only be called at CDS dump time");
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   449
    int num_entries = 0;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   450
    ClassPathEntry* e= ClassLoader::_app_classpath_entries;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   451
    while (e != NULL) {
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   452
      num_entries ++;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   453
      e = e->next();
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   454
    }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   455
    return num_entries;
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   456
  }
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   457
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   458
  static void  check_shared_classpath(const char *path);
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   459
  static void  finalize_shared_paths_misc_info();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   460
  static int   get_shared_paths_misc_info_size();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   461
  static void* get_shared_paths_misc_info();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   462
  static bool  check_shared_paths_misc_info(void* info, int size);
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   463
  static void  exit_with_path_failure(const char* error, const char* message);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   464
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   465
  static void record_result(InstanceKlass* ik, const ClassFileStream* stream);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   466
#endif
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
   467
  static JImageLocationRef jimage_find_resource(JImageFile* jf, const char* module_name,
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
   468
                                                const char* file_name, jlong &size);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   469
36364
5971776598e5 8150103: Convert TraceClassPaths to Unified Logging
mockner
parents: 34666
diff changeset
   470
  static void  trace_class_path(const char* msg, const char* name = NULL);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   471
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // VM monitoring and management support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  static jlong classloader_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  static jlong class_method_total_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  static jlong class_init_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  static jlong class_init_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  static jlong class_verify_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  static jlong class_link_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  static jlong class_link_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // indicates if class path already contains a entry (exact match by name)
41741
2f5b8bbcb18c 8166931: Do not include classes which are unusable during run time in the classlist file
ccheung
parents: 41281
diff changeset
   482
  static bool contains_append_entry(const char* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   484
  // adds a class path to the boot append entries
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   485
  static void add_to_boot_append_entries(ClassPathEntry* new_entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  // creates a class path zip entry (returns NULL if JAR file cannot be opened)
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   488
  static ClassPathZipEntry* create_class_path_zip_entry(const char *apath, bool is_boot_append);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   490
  static bool string_ends_with(const char* str, const char* str_to_find);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   491
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   492
  // obtain package name from a fully qualified class name
39216
40c3d66352ae 8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents: 38207
diff changeset
   493
  // *bad_class_name is set to true if there's a problem with parsing class_name, to
40c3d66352ae 8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents: 38207
diff changeset
   494
  // distinguish from a class_name with no package name, as both cases have a NULL return value
40c3d66352ae 8153858: Clean up needed when obtaining the package name from a fully qualified class name
rprotacio
parents: 38207
diff changeset
   495
  static const char* package_from_name(const char* const class_name, bool* bad_class_name = NULL);
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   496
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
   497
  static bool is_modules_image(const char* name) { return string_ends_with(name, MODULES_IMAGE_NAME); }
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   498
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  static void verify()              PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // Force compilation of all methods in all classes in bootstrap class path (stress test)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
#ifndef PRODUCT
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   504
 protected:
17004
4d2371d76a19 8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents: 13963
diff changeset
   505
  static int _compile_the_world_class_counter;
4d2371d76a19 8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents: 13963
diff changeset
   506
  static int _compile_the_world_method_counter;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  static void compile_the_world();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  static void compile_the_world_in(char* name, Handle loader, TRAPS);
17004
4d2371d76a19 8011933: add number of classes, methods and time spent to CompileTheWorld
twisti
parents: 13963
diff changeset
   510
  static int  compile_the_world_counter() { return _compile_the_world_class_counter; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
#endif //PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
};
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   513
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   514
// PerfClassTraceTime is used to measure time for class loading related events.
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   515
// This class tracks cumulative time and exclusive time for specific event types.
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   516
// During the execution of one event, other event types (e.g. class loading and
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   517
// resolution) as well as recursive calls of the same event type could happen.
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   518
// Only one elapsed timer (cumulative) and one thread-local self timer (exclusive)
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   519
// (i.e. only one event type) are active at a time even multiple PerfClassTraceTime
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   520
// instances have been created as multiple events are happening.
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   521
class PerfClassTraceTime {
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   522
 public:
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   523
  enum {
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   524
    CLASS_LOAD   = 0,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   525
    PARSE_CLASS  = 1,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   526
    CLASS_LINK   = 2,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   527
    CLASS_VERIFY = 3,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   528
    CLASS_CLINIT = 4,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   529
    DEFINE_CLASS = 5,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   530
    EVENT_TYPE_COUNT = 6
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   531
  };
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   532
 protected:
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   533
  // _t tracks time from initialization to destruction of this timer instance
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   534
  // including time for all other event types, and recursive calls of this type.
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   535
  // When a timer is called recursively, the elapsedTimer _t would not be used.
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   536
  elapsedTimer     _t;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   537
  PerfLongCounter* _timep;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   538
  PerfLongCounter* _selftimep;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   539
  PerfLongCounter* _eventp;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   540
  // pointer to thread-local recursion counter and timer array
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   541
  // The thread_local timers track cumulative time for specific event types
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   542
  // exclusive of time for other event types, but including recursive calls
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   543
  // of the same type.
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   544
  int*             _recursion_counters;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   545
  elapsedTimer*    _timers;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   546
  int              _event_type;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   547
  int              _prev_active_event;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   548
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   549
 public:
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   550
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   551
  inline PerfClassTraceTime(PerfLongCounter* timep,     /* counter incremented with inclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   552
                            PerfLongCounter* selftimep, /* counter incremented with exclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   553
                            PerfLongCounter* eventp,    /* event counter */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   554
                            int* recursion_counters,    /* thread-local recursion counter array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   555
                            elapsedTimer* timers,       /* thread-local timer array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   556
                            int type                    /* event type */ ) :
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   557
      _timep(timep), _selftimep(selftimep), _eventp(eventp), _recursion_counters(recursion_counters), _timers(timers), _event_type(type) {
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   558
    initialize();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   559
  }
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   560
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   561
  inline PerfClassTraceTime(PerfLongCounter* timep,     /* counter incremented with inclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   562
                            elapsedTimer* timers,       /* thread-local timer array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   563
                            int type                    /* event type */ ) :
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   564
      _timep(timep), _selftimep(NULL), _eventp(NULL), _recursion_counters(NULL), _timers(timers), _event_type(type) {
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   565
    initialize();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   566
  }
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   567
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   568
  inline void suspend() { _t.stop(); _timers[_event_type].stop(); }
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   569
  inline void resume()  { _t.start(); _timers[_event_type].start(); }
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   570
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   571
  ~PerfClassTraceTime();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   572
  void initialize();
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   573
};
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   574
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   575
#endif // SHARE_VM_CLASSFILE_CLASSLOADER_HPP