src/hotspot/share/classfile/classLoader.hpp
author ccheung
Wed, 02 Oct 2019 16:55:08 -0700
changeset 58447 319173c62caa
parent 57898 5ddb746d45e0
child 58486 dcb418f5aabd
permissions -rw-r--r--
8231606: _method_ordering is not set during CDS dynamic dump time Summary: Add the missing DynamicDumpSharedSpaces check in sort_methods(); replace the (DumpSharedSpaces || DynamicDumpSharedSpaces) with the Arguments::is_dumping_archive() function call. Reviewed-by: iklam, coleenp, jiangli
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52960
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52960
diff changeset
    25
#ifndef SHARE_CLASSFILE_CLASSLOADER_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52960
diff changeset
    26
#define SHARE_CLASSFILE_CLASSLOADER_HPP
7397
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"
58447
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 57898
diff changeset
    29
#include "runtime/arguments.hpp"
48115
d8ec0640616c 8191860: Add perfData.inline.hpp
stefank
parents: 48011
diff changeset
    30
#include "runtime/handles.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "runtime/perfData.hpp"
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    32
#include "utilities/exceptions.hpp"
27683
1d5707553fff 8064580: Move INCLUDE_CDS include section to the end of the include list
stefank
parents: 27025
diff changeset
    33
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The VM class loader.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#include <sys/stat.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    38
// Name of boot "modules" image
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    39
#define  MODULES_IMAGE_NAME "modules"
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    40
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
    41
// Class path entry (directory or zip file)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
    43
class JImageFile;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    44
class ClassFileStream;
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
    45
class PackageEntry;
48115
d8ec0640616c 8191860: Add perfData.inline.hpp
stefank
parents: 48011
diff changeset
    46
template <typename T> class GrowableArray;
31608
b5cb9a07591a 8080511: Refresh of jimage support
jfdenise
parents: 29076
diff changeset
    47
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    48
class ClassPathEntry : public CHeapObj<mtClass> {
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    49
private:
40887
8d35e19f5548 8158854: Ensure release_store is paired with load_acquire in lock-free code
dholmes
parents: 40244
diff changeset
    50
  ClassPathEntry* volatile _next;
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    51
protected:
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    52
  const char* copy_path(const char*path);
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    53
public:
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
    54
  ClassPathEntry* next() const;
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
    55
  virtual ~ClassPathEntry() {}
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
    56
  void set_next(ClassPathEntry* next);
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    57
  virtual bool is_modules_image() const { return false; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    58
  virtual bool is_jar_file() const { return false; }
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
    59
  // Is this entry created from the "Class-path" attribute from a JAR Manifest?
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    60
  virtual bool from_class_path_attr() const { return false; }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    61
  virtual const char* name() const = 0;
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    62
  virtual JImageFile* jimage() const { return NULL; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    63
  virtual void close_jimage() {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Constructor
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    65
  ClassPathEntry() : _next(NULL) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Attempt to locate file_name through this class path entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // 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
    68
  virtual ClassFileStream* open_stream(const char* name, TRAPS) = 0;
54340
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 54257
diff changeset
    69
  // Open the stream for a specific class loader
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 54257
diff changeset
    70
  virtual ClassFileStream* open_stream_for_loader(const char* name, ClassLoaderData* loader_data, TRAPS) {
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 54257
diff changeset
    71
    return open_stream(name, THREAD);
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 54257
diff changeset
    72
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
class ClassPathDirEntry: public ClassPathEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
 private:
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
    77
  const char* _dir;           // Name of directory
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
 public:
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
    79
  const char* name() const { return _dir; }
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    80
  ClassPathDirEntry(const char* dir) {
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    81
    _dir = copy_path(dir);
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 55524
diff changeset
    82
  }
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
    83
  virtual ~ClassPathDirEntry() {}
19685
3df9b00b5d5f 8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents: 17004
diff changeset
    84
  ClassFileStream* open_stream(const char* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// Type definitions for zip file and zip file entry
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
typedef void* jzfile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  char *name;                   /* entry name */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  jlong time;                   /* modification time */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  jlong size;                   /* size of uncompressed data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  jlong csize;                  /* size of compressed data (zero if uncompressed) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  jint crc;                     /* crc of uncompressed data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  char *comment;                /* optional zip file comment */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  jbyte *extra;                 /* optional extra data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  jlong pos;                    /* position of LOC header (if negative) or data */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
} jzentry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
class ClassPathZipEntry: public ClassPathEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
 private:
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   102
  jzfile* _zip;              // The zip archive
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   103
  const char*   _zip_name;   // Name of zip archive
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   104
  bool _from_class_path_attr; // From the "Class-path" attribute of a jar file
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
 public:
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   106
  bool is_jar_file() const { return true;  }
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   107
  bool from_class_path_attr() const { return _from_class_path_attr; }
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   108
  const char* name() const { return _zip_name; }
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   109
  ClassPathZipEntry(jzfile* zip, const char* zip_name, bool is_boot_append, bool from_class_path_attr);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
   110
  virtual ~ClassPathZipEntry();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   111
  u1* open_entry(const char* name, jint* filesize, bool nul_terminate, TRAPS);
19685
3df9b00b5d5f 8020675: invalid jar file in the bootclasspath could lead to jvm fatal error
ccheung
parents: 17004
diff changeset
   112
  ClassFileStream* open_stream(const char* name, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  void contents_do(void f(const char* name, void* context), void* context);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   117
// For java image files
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   118
class ClassPathImageEntry: public ClassPathEntry {
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   119
private:
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   120
  JImageFile* _jimage;
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   121
  const char* _name;
54257
21702e87efdf 8220095: Assertion failure when symlink (with different name) is used for lib/modules file
iklam
parents: 53884
diff changeset
   122
  DEBUG_ONLY(static ClassPathImageEntry* _singleton;)
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   123
public:
47673
6126617b8508 8185160: -XX:DumpLoadedClassList omits graal classes
iklam
parents: 47634
diff changeset
   124
  bool is_modules_image() const;
34666
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   125
  bool is_open() const { return _jimage != NULL; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   126
  const char* name() const { return _name == NULL ? "" : _name; }
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   127
  JImageFile* jimage() const { return _jimage; }
52960
a6182c464b31 8200613: SA: jstack throws UnmappedAddressException with a CDS core file
jgeorge
parents: 52934
diff changeset
   128
  void close_jimage();
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   129
  ClassPathImageEntry(JImageFile* jimage, const char* name);
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 46329
diff changeset
   130
  virtual ~ClassPathImageEntry();
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   131
  ClassFileStream* open_stream(const char* name, TRAPS);
54340
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 54257
diff changeset
   132
  ClassFileStream* open_stream_for_loader(const char* name, ClassLoaderData* loader_data, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   135
// ModuleClassPathList contains a linked list of ClassPathEntry's
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   136
// 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
   137
// 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
   138
// command line option.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   139
class ModuleClassPathList : public CHeapObj<mtClass> {
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   140
private:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   141
  Symbol* _module_name;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   142
  // 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
   143
  ClassPathEntry* _module_first_entry;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   144
  ClassPathEntry* _module_last_entry;
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   145
public:
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   146
  Symbol* module_name() const { return _module_name; }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   147
  ClassPathEntry* module_first_entry() const { return _module_first_entry; }
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   148
  ModuleClassPathList(Symbol* module_name);
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   149
  ~ModuleClassPathList();
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   150
  void add_to_list(ClassPathEntry* new_entry);
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   151
};
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   152
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
class ClassLoader: AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
 public:
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   155
  enum ClassLoaderType {
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   156
    BOOT_LOADER = 1,      /* boot loader */
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   157
    PLATFORM_LOADER  = 2, /* PlatformClassLoader */
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   158
    APP_LOADER  = 3       /* AppClassLoader */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  };
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   160
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static PerfCounter* _perf_accumulated_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static PerfCounter* _perf_classes_inited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  static PerfCounter* _perf_class_init_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   166
  static PerfCounter* _perf_class_init_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   167
  static PerfCounter* _perf_classes_verified;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  static PerfCounter* _perf_class_verify_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   169
  static PerfCounter* _perf_class_verify_selftime;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  static PerfCounter* _perf_classes_linked;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  static PerfCounter* _perf_class_link_time;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   172
  static PerfCounter* _perf_class_link_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   173
  static PerfCounter* _perf_class_parse_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   174
  static PerfCounter* _perf_class_parse_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   175
  static PerfCounter* _perf_sys_class_lookup_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   176
  static PerfCounter* _perf_shared_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   177
  static PerfCounter* _perf_sys_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   178
  static PerfCounter* _perf_app_classload_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   179
  static PerfCounter* _perf_app_classload_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   180
  static PerfCounter* _perf_app_classload_count;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   181
  static PerfCounter* _perf_define_appclasses;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   182
  static PerfCounter* _perf_define_appclass_time;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   183
  static PerfCounter* _perf_define_appclass_selftime;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   184
  static PerfCounter* _perf_app_classfile_bytes_read;
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   185
  static PerfCounter* _perf_sys_classfile_bytes_read;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  static PerfCounter* _sync_systemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  static PerfCounter* _sync_nonSystemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static PerfCounter* _sync_JVMFindLoadedClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  static PerfCounter* _sync_JVMDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  static PerfCounter* _sync_JNIDefineClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  static PerfCounter* _unsafe_defineClassCallCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   195
  // 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
   196
  //  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
   197
  //    --patch-module=<module>=<file>(<pathsep><file>)*
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   198
  //  2. the base piece
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   199
  //    [jimage | build with exploded modules]
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   200
  //  3. boot loader append path
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   201
  //    [-Xbootclasspath/a]; [jvmti appended entries]
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   202
  //
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   203
  // The boot loader must obey this order when attempting
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   204
  // to load a class.
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   205
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   206
  // 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
   207
  static GrowableArray<ModuleClassPathList*>* _patch_mod_entries;
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   208
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   209
  // 2. the base piece
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   210
  //    Contains the ClassPathEntry of the modular java runtime image.
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   211
  //    If no java runtime image is present, this indicates a
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   212
  //    build with exploded modules is being used instead.
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   213
  static ClassPathEntry* _jrt_entry;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   214
  static GrowableArray<ModuleClassPathList*>* _exploded_entries;
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   215
  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
   216
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   217
  // 3. the boot loader's append path
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   218
  //    [-Xbootclasspath/a]; [jvmti appended entries]
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   219
  //    Note: boot loader append path does not support named modules.
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   220
  static ClassPathEntry* _first_append_entry;
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   221
  // Last entry in linked list of appended ClassPathEntry instances
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   222
  static ClassPathEntry* _last_append_entry;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   224
  // Info used by CDS
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   225
  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
   226
  CDS_ONLY(static ClassPathEntry* _last_app_classpath_entry;)
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   227
  CDS_ONLY(static ClassPathEntry* _module_path_entries;)
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   228
  CDS_ONLY(static ClassPathEntry* _last_module_path_entry;)
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   229
  CDS_ONLY(static void setup_app_search_path(const char* class_path);)
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   230
  CDS_ONLY(static void setup_module_search_path(const char* path, TRAPS);)
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   231
  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
   232
                                           ClassPathEntry* entry,
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   233
                                           bool check_for_duplicates);
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   234
  CDS_ONLY(static void add_to_module_path_entries(const char* path,
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   235
                                           ClassPathEntry* entry);)
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   236
 public:
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   237
  CDS_ONLY(static ClassPathEntry* app_classpath_entries() {return _app_classpath_entries;})
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   238
  CDS_ONLY(static ClassPathEntry* module_path_entries() {return _module_path_entries;})
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   239
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   240
 protected:
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   241
  // Initialization:
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   242
  //   - 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
   243
  //   - setup the boot loader's patch mod entries, if present
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   244
  //   - create the ModuleEntry for java.base
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  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
   246
  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
   247
  static void setup_patch_mod_entries();
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   248
  static void create_javabase();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   249
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  static void load_zip_library();
32619
47acec81dcca 8087181: Move native jimage code to its own library (maybe libjimage)
jlaskey
parents: 31612
diff changeset
   251
  static void load_jimage_library();
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   252
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   253
 public:
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   254
  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
   255
                                                 bool throw_exception,
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   256
                                                 bool is_boot_append,
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   257
                                                 bool from_class_path_attr, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   259
  // If the package for the fully qualified class name is in the boot
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   260
  // loader's package entry table then add_package() sets the classpath_index
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   261
  // field so that get_system_package() will know to return a non-null value
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   262
  // for the package's location.  And, so that the package will be added to
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   263
  // the list of packages returned by get_system_packages().
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   264
  // For packages whose classes are loaded from the boot loader class path, the
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   265
  // classpath_index indicates which entry on the boot loader class path.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   266
  static bool add_package(const char *fullq_class_name, s2 classpath_index, TRAPS);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   267
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // Canonicalizes path names, so strcmp will work properly. This is mainly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  // to avoid confusing the zip library
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   270
  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
   271
  static const char* file_name_for_class_name(const char* class_name,
1c7168ea0034 8140485: Class load and creation cleanup
mgronlun
parents: 34287
diff changeset
   272
                                              int class_name_len);
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
   273
  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
   274
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
 public:
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
   276
  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
   277
  static int crc32(int crc, const char* buf, int len);
26419
25abc4a3285c 8056971: Minor class loading clean-up
iklam
parents: 26135
diff changeset
   278
  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
   279
                                           bool check_for_duplicates,
37220
ec74292c0c9c 8075253: Multiversion JAR feature: CDS does not support MV-JARs
ccheung
parents: 36508
diff changeset
   280
                                           bool is_boot_append,
55524
b279ae9843b8 8211723: AppCDS: referring to a jar file in any way other than exactly how it was done during dumping doesn't work
ccheung
parents: 54927
diff changeset
   281
                                           bool from_class_path_attr,
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   282
                                           bool throw_exception=true);
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   283
  CDS_ONLY(static void update_module_path_entry_list(const char *path, TRAPS);)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  static void print_bootclasspath();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  // Timing
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   287
  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
   288
  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
   289
  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
   290
  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
   291
  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
   292
  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
   293
  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
   294
  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
   295
  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
   296
  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
   297
  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
   298
  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
   299
  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
   300
  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
   301
  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
   302
  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
   303
  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
   304
  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
   305
  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
   306
  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
   307
  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
   308
  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
   309
  static PerfCounter* perf_sys_classfile_bytes_read() { return _perf_sys_classfile_bytes_read; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // Record how often system loader lock object is contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  static PerfCounter* sync_systemLoaderLockContentionRate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    return _sync_systemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  // Record how often non system loader lock object is contended
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  static PerfCounter* sync_nonSystemLoaderLockContentionRate() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    return _sync_nonSystemLoaderLockContentionRate;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // Record how many calls to JVM_FindLoadedClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  static PerfCounter* sync_JVMFindLoadedClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    return _sync_JVMFindLoadedClassLockFreeCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // Record how many calls to JVM_DefineClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  static PerfCounter* sync_JVMDefineClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    return _sync_JVMDefineClassLockFreeCounter;
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 many calls to jni_DefineClass w/o holding a lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  static PerfCounter* sync_JNIDefineClassLockFreeCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
    return _sync_JNIDefineClassLockFreeCounter;
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 Unsafe_DefineClass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  static PerfCounter* unsafe_defineClassCallCounter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
    return _unsafe_defineClassCallCounter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   341
  // Modular java runtime image is present vs. a build with exploded modules
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   342
  static bool has_jrt_entry() { return (_jrt_entry != NULL); }
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   343
  static ClassPathEntry* get_jrt_entry() { return _jrt_entry; }
52960
a6182c464b31 8200613: SA: jstack throws UnmappedAddressException with a CDS core file
jgeorge
parents: 52934
diff changeset
   344
  static void close_jrt_image();
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   345
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   346
  // 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
   347
  static void add_to_exploded_build_list(Symbol* module_name, TRAPS);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   348
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 40013
diff changeset
   349
  // 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
   350
  static ClassFileStream* search_module_entries(const GrowableArray<ModuleClassPathList*>* const module_list,
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   351
                                                const char* const class_name,
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   352
                                                const char* const file_name, TRAPS);
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   353
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Load individual .class file
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 42876
diff changeset
   355
  static InstanceKlass* load_class(Symbol* class_name, bool search_append_only, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  // If the specified package has been loaded by the system, then returns
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // the name of the directory or ZIP file that the package was loaded from.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // Returns null if the package was not loaded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // Note: The specified name can either be the name of a class or package.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // If a package name is specified, then it must be "/"-separator and also
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // end with a trailing "/".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  static oop get_system_package(const char* name, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  // Returns an array of Java strings representing all of the currently
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  // loaded system packages.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // Note: The package names returned are "/"-separated and end with a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // trailing "/".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  static objArrayOop get_system_packages(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // Initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  static void initialize();
40013
943cf01a6b82 8154239: -Xbootclasspath/a breaks exploded build
lfoltan
parents: 39216
diff changeset
   373
  static void classLoader_init2(TRAPS);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   374
  CDS_ONLY(static void initialize_shared_path();)
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   375
  CDS_ONLY(static void initialize_module_path(TRAPS);)
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   376
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  static int compute_Object_vtable();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
   379
  static ClassPathEntry* classpath_entry(int n);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
42634
7459867ebf98 8168850: Mark module entries that have been specified by --patch-module
rprotacio
parents: 41741
diff changeset
   381
  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
   382
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   383
#if INCLUDE_CDS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // Sharing dump and restore
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   386
  // 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
   387
  // entries during shared classpath setup time.
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
   388
  static int num_boot_classpath_entries();
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   389
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
   390
  static ClassPathEntry* get_next_boot_classpath_entry(ClassPathEntry* e);
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   391
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   392
  // 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
   393
  // entries during shared classpath setup time.
49340
4e82736053ae 8191102: Incorrect include file use in classLoader.hpp
hseigel
parents: 49037
diff changeset
   394
  static int num_app_classpath_entries();
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   395
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   396
  // Helper function used by CDS code to get the number of module path
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   397
  // entries during shared classpath setup time.
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   398
  static int num_module_path_entries() {
58447
319173c62caa 8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents: 57898
diff changeset
   399
    Arguments::assert_is_dumping_archive();
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   400
    int num_entries = 0;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   401
    ClassPathEntry* e= ClassLoader::_module_path_entries;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   402
    while (e != NULL) {
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   403
      num_entries ++;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   404
      e = e->next();
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   405
    }
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   406
    return num_entries;
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   407
  }
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   408
  static void  exit_with_path_failure(const char* error, const char* message);
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   409
  static char* skip_uri_protocol(char* source);
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49612
diff changeset
   410
  static void  record_result(InstanceKlass* ik, const ClassFileStream* stream, TRAPS);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   411
#endif
47103
a993ec29ec75 8186842: Use Java class loaders for creating the CDS archive
ccheung
parents: 46746
diff changeset
   412
  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
   413
                                                const char* file_name, jlong &size);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25949
diff changeset
   414
36364
5971776598e5 8150103: Convert TraceClassPaths to Unified Logging
mockner
parents: 34666
diff changeset
   415
  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
   416
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // VM monitoring and management support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  static jlong classloader_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  static jlong class_method_total_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  static jlong class_init_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  static jlong class_init_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  static jlong class_verify_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  static jlong class_link_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  static jlong class_link_time_ms();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // 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
   427
  static bool contains_append_entry(const char* name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
47991
a474466c4fdb 8187118: Remove appending -cp path to the boot class path at AppCDS dump time
jiangli
parents: 47673
diff changeset
   429
  // 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
   430
  static void add_to_boot_append_entries(ClassPathEntry* new_entry);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // 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
   433
  static ClassPathZipEntry* create_class_path_zip_entry(const char *apath, bool is_boot_append);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   435
  static bool string_ends_with(const char* str, const char* str_to_find);
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 36364
diff changeset
   436
37773
e5b3e9732c3c 8154956: Module system implementation refresh (4/2016)
alanb
parents: 37418
diff changeset
   437
  // 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
   438
  // *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
   439
  // 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
   440
  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
   441
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  static void verify()              PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
};
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   445
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   446
// 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
   447
// 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
   448
// 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
   449
// 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
   450
// 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
   451
// (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
   452
// 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
   453
class PerfClassTraceTime {
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   454
 public:
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   455
  enum {
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   456
    CLASS_LOAD   = 0,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   457
    PARSE_CLASS  = 1,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   458
    CLASS_LINK   = 2,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   459
    CLASS_VERIFY = 3,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   460
    CLASS_CLINIT = 4,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   461
    DEFINE_CLASS = 5,
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   462
    EVENT_TYPE_COUNT = 6
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   463
  };
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   464
 protected:
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   465
  // _t tracks time from initialization to destruction of this timer instance
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   466
  // 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
   467
  // 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
   468
  elapsedTimer     _t;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   469
  PerfLongCounter* _timep;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   470
  PerfLongCounter* _selftimep;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   471
  PerfLongCounter* _eventp;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   472
  // pointer to thread-local recursion counter and timer array
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   473
  // The thread_local timers track cumulative time for specific event types
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   474
  // exclusive of time for other event types, but including recursive calls
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   475
  // of the same type.
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   476
  int*             _recursion_counters;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   477
  elapsedTimer*    _timers;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   478
  int              _event_type;
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   479
  int              _prev_active_event;
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   480
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   481
 public:
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   482
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   483
  inline PerfClassTraceTime(PerfLongCounter* timep,     /* counter incremented with inclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   484
                            PerfLongCounter* selftimep, /* counter incremented with exclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   485
                            PerfLongCounter* eventp,    /* event counter */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   486
                            int* recursion_counters,    /* thread-local recursion counter array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   487
                            elapsedTimer* timers,       /* thread-local timer array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   488
                            int type                    /* event type */ ) :
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   489
      _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
   490
    initialize();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   491
  }
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   492
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   493
  inline PerfClassTraceTime(PerfLongCounter* timep,     /* counter incremented with inclusive time */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   494
                            elapsedTimer* timers,       /* thread-local timer array */
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   495
                            int type                    /* event type */ ) :
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   496
      _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
   497
    initialize();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   498
  }
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   499
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   500
  inline void suspend() { _t.stop(); _timers[_event_type].stop(); }
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   501
  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
   502
7910
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   503
  ~PerfClassTraceTime();
135031ddb2bb 6966589: hs16-b08 causes java.lang.StackOverflowError
minqi
parents: 7397
diff changeset
   504
  void initialize();
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   505
};
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 1
diff changeset
   506
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52960
diff changeset
   507
#endif // SHARE_CLASSFILE_CLASSLOADER_HPP