src/hotspot/share/memory/filemap.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 46810 hotspot/src/share/vm/memory/filemap.hpp@7dad333205cd
child 47599 0fb1d501c408
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46625
diff changeset
     2
 * Copyright (c) 2003, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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_MEMORY_FILEMAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_MEMORY_FILEMAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46625
diff changeset
    28
#include "classfile/classLoader.hpp"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    29
#include "memory/metaspaceShared.hpp"
20406
934f0b12daa9 8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents: 19319
diff changeset
    30
#include "memory/metaspace.hpp"
46742
24ec8a039c90 8184994: Add Dictionary size logging and jcmd
coleenp
parents: 46625
diff changeset
    31
#include "memory/universe.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    32
#include "utilities/align.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
// Layout of the file:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//  header: dump of archive instance plus versioning info, datestamp, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//   [magic # = 0xF00BABA2]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//  ... padding to align on page-boundary
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 20406
diff changeset
    38
//  read-write space
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 20406
diff changeset
    39
//  read-only space
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//  misc data (block offset table, string table, symbols, dictionary, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//  tag(666)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
static const int JVM_IDENT_MAX = 256;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    45
class SharedClassPathEntry VALUE_OBJ_CLASS_SPEC {
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    46
protected:
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    47
  bool   _is_dir;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    48
  time_t _timestamp;          // jar/jimage timestamp,  0 if is directory or other
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    49
  long   _filesize;           // jar/jimage file size, -1 if is directory, -2 if other
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    50
  Array<char>* _name;
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    51
  Array<u1>*   _manifest;
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    52
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    53
public:
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    54
  void init(const char* name, TRAPS);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    55
  void metaspace_pointers_do(MetaspaceClosure* it);
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    56
  bool validate();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    57
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    58
  // The _timestamp only gets set for jar files and "modules" jimage.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    59
  bool is_jar_or_bootimage() {
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
    60
    return _timestamp != 0;
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
    61
  }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    62
  bool is_dir() { return _is_dir; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    63
  bool is_jrt() { return ClassLoader::is_jrt(name()); }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    64
  time_t timestamp() const { return _timestamp; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    65
  long   filesize()  const { return _filesize; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    66
  const char* name() const { return _name->data(); }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    67
  const char* manifest() const {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    68
    return (_manifest == NULL) ? NULL : (const char*)_manifest->data();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    69
  }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    70
  int manifest_size() const {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    71
    return (_manifest == NULL) ? 0 : _manifest->length();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    72
  }
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    73
};
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    74
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    75
class FileMapInfo : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
private:
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    77
  friend class ManifestStream;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    _invalid_version = -1,
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    80
    _current_version = 3
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  bool  _file_open;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  int   _fd;
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
    85
  size_t  _file_offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    87
private:
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    88
  static Array<u8>*            _classpath_entry_table;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    89
  static int                   _classpath_entry_table_size;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    90
  static size_t                _classpath_entry_size;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    91
  static bool                  _validating_classpath_entry_table;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    92
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // FileMapHeader describes the shared space data in the file to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // mapped.  This structure gets written to a file.  It is not a class, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // that the compilers don't add any compiler-private data to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    97
public:
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    98
  struct FileMapHeaderBase : public CHeapObj<mtClass> {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    99
    virtual bool validate() = 0;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   100
    virtual void populate(FileMapInfo* info, size_t alignment) = 0;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   101
  };
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   102
  struct FileMapHeader : FileMapHeaderBase {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   103
    // Use data() and data_size() to memcopy to/from the FileMapHeader. We need to
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   104
    // avoid read/writing the C++ vtable pointer.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   105
    static size_t data_size();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   106
    char* data() {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   107
      return ((char*)this) + sizeof(FileMapHeaderBase);
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   108
    }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   109
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    int    _magic;                    // identify file type.
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   111
    int    _crc;                      // header crc checksum.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    int    _version;                  // (from enum, above.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    size_t _alignment;                // how shared archive should be aligned
15101
58d43bf04c45 8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents: 14120
diff changeset
   114
    int    _obj_alignment;            // value of ObjectAlignmentInBytes
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   115
    int    _narrow_oop_shift;         // compressed oop encoding shift
33628
09241459a8b8 8141132: JEP 254: Compact Strings
thartmann
parents: 32589
diff changeset
   116
    bool   _compact_strings;          // value of CompactStrings
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   117
    uintx  _max_heap_size;            // java max heap size during dumping
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   118
    Universe::NARROW_OOP_MODE _narrow_oop_mode; // compressed oop encoding mode
31362
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
   119
    int     _narrow_klass_shift;      // save narrow klass base and shift
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
   120
    address _narrow_klass_base;
35231
e89989198037 8145593: Clean up metaspaceShared.cpp
iklam
parents: 33628
diff changeset
   121
    char*   _misc_data_patching_start;
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   122
    char*   _read_only_tables_start;
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   123
    address _cds_i2i_entry_code_buffers;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   124
    size_t  _cds_i2i_entry_code_buffers_size;
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   125
    size_t  _core_spaces_size;        // number of bytes allocated by the core spaces
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   126
                                      // (mc, md, ro, rw and od).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    struct space_info {
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   129
      int    _crc;           // crc checksum of the current space
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   130
      size_t _file_offset;   // sizeof(this) rounded to vm page size
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   131
      union {
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   132
        char*  _base;        // copy-on-write base address
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   133
        intx   _offset;      // offset from the compressed oop encoding base, only used
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   134
                             // by string space
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   135
      } _addr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      size_t _used;          // for setting space top on read
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      bool   _read_only;     // read only space?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      bool   _allow_exec;    // executable code in space?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   139
    } _space[MetaspaceShared::n_regions];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    // The following fields are all sanity checks for whether this archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    // will function correctly with this JVM and the bootclasspath it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    // invoked with.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    char  _jvm_ident[JVM_IDENT_MAX];      // identifier for jvm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   146
    // The _paths_misc_info is a variable-size structure that records "miscellaneous"
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   147
    // information during dumping. It is generated and validated by the
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   148
    // SharedPathsMiscInfo class. See SharedPathsMiscInfo.hpp and sharedClassUtil.hpp for
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   149
    // detailed description.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   150
    //
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   151
    // The _paths_misc_info data is stored as a byte array in the archive file header,
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   152
    // immediately after the _header field. This information is used only when
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   153
    // checking the validity of the archive and is deallocated after the archive is loaded.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   154
    //
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   155
    // Note that the _paths_misc_info does NOT include information for JAR files
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   156
    // that existed during dump time. Their information is stored in _classpath_entry_table.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   157
    int _paths_misc_info_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   159
    // The following is a table of all the class path entries that were used
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   160
    // during dumping. At run time, we require these files to exist and have the same
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   161
    // size/modification time, or else the archive will refuse to load.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   162
    //
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   163
    // All of these entries must be JAR files. The dumping process would fail if a non-empty
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   164
    // directory was specified in the classpaths. If an empty directory was specified
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   165
    // it is checked by the _paths_misc_info as described above.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   166
    //
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   167
    // FIXME -- if JAR files in the tail of the list were specified but not used during dumping,
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   168
    // they should be removed from this table, to save space and to avoid spurious
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   169
    // loading failures during runtime.
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   170
    int _classpath_entry_table_size;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   171
    size_t _classpath_entry_size;
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   172
    Array<u8>* _classpath_entry_table;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   173
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   174
    char* region_addr(int idx);
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   175
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   176
    virtual bool validate();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   177
    virtual void populate(FileMapInfo* info, size_t alignment);
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   178
    int compute_crc();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   179
  };
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   180
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   181
  FileMapHeader * _header;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   182
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  const char* _full_path;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   184
  char* _paths_misc_info;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  static FileMapInfo* _current_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  bool  init_from_file(int fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void  align_file_position();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   190
  bool  validate_header_impl();
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   191
  static void metaspace_pointers_do(MetaspaceClosure* it);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
public:
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   194
  FileMapInfo();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   195
  ~FileMapInfo();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  static int current_version()        { return _current_version; }
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   198
  int    compute_header_crc()         { return _header->compute_crc(); }
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   199
  void   set_header_crc(int crc)      { _header->_crc = crc; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void   populate_header(size_t alignment);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   201
  bool   validate_header();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void   invalidate();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   203
  int    version()                    { return _header->_version; }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   204
  size_t alignment()                  { return _header->_alignment; }
31345
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   205
  Universe::NARROW_OOP_MODE narrow_oop_mode() { return _header->_narrow_oop_mode; }
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   206
  int    narrow_oop_shift()           { return _header->_narrow_oop_shift; }
1bba15125d8d 8015086: add interned strings to the shared archive.
jiangli
parents: 27562
diff changeset
   207
  uintx  max_heap_size()              { return _header->_max_heap_size; }
31362
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
   208
  address narrow_klass_base() const   { return _header->_narrow_klass_base; }
8957ccbb5821 8098821: Crash in system dictionary initialization with shared strings
coleenp
parents: 31345
diff changeset
   209
  int     narrow_klass_shift() const  { return _header->_narrow_klass_shift; }
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   210
  struct FileMapHeader* header()      { return _header; }
35231
e89989198037 8145593: Clean up metaspaceShared.cpp
iklam
parents: 33628
diff changeset
   211
  char* misc_data_patching_start()            { return _header->_misc_data_patching_start; }
e89989198037 8145593: Clean up metaspaceShared.cpp
iklam
parents: 33628
diff changeset
   212
  void set_misc_data_patching_start(char* p)  { _header->_misc_data_patching_start = p; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   213
  char* read_only_tables_start()              { return _header->_read_only_tables_start; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   214
  void set_read_only_tables_start(char* p)    { _header->_read_only_tables_start = p; }
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   215
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   216
  address cds_i2i_entry_code_buffers() {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   217
    return _header->_cds_i2i_entry_code_buffers;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   218
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   219
  void set_cds_i2i_entry_code_buffers(address addr) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   220
    _header->_cds_i2i_entry_code_buffers = addr;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   221
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   222
  size_t cds_i2i_entry_code_buffers_size() {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   223
    return _header->_cds_i2i_entry_code_buffers_size;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   224
  }
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   225
  void set_cds_i2i_entry_code_buffers_size(size_t s) {
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   226
    _header->_cds_i2i_entry_code_buffers_size = s;
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   227
  }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   228
  void set_core_spaces_size(size_t s)    {  _header->_core_spaces_size = s; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   229
  size_t core_spaces_size()              { return _header->_core_spaces_size; }
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   230
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   231
  static FileMapInfo* current_info() {
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   232
    CDS_ONLY(return _current_info;)
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   233
    NOT_CDS(return NULL;)
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   234
  }
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   235
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  static void assert_mark(bool check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // File manipulation.
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   239
  bool  initialize() NOT_CDS_RETURN_(false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  bool  open_for_read();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  void  open_for_write();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void  write_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void  write_region(int region, char* base, size_t size,
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   244
                     bool read_only, bool allow_exec);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   245
  size_t write_archive_heap_regions(GrowableArray<MemRegion> *heap_mem,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   246
                                    int first_region_id, int max_num_regions);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  void  write_bytes(const void* buffer, int count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void  write_bytes_aligned(const void* buffer, int count);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   249
  char* map_region(int i);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   250
  void  map_heap_regions() NOT_CDS_JAVA_HEAP_RETURN;
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   251
  void  fixup_mapped_heap_regions() NOT_CDS_JAVA_HEAP_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  void  unmap_region(int i);
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   253
  bool  verify_region_checksum(int i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  void  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  bool  is_open() { return _file_open; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   256
  ReservedSpace reserve_shared_memory();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // JVM/TI RedefineClasses() support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // Remap the shared readonly space to shared readwrite, private.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  bool  remap_shared_readonly_as_readwrite();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // Errors.
26296
fd6180a0e0ab 8055754: filemap.cpp does not compile with clang
sla
parents: 26135
diff changeset
   263
  static void fail_stop(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2);
fd6180a0e0ab 8055754: filemap.cpp does not compile with clang
sla
parents: 26135
diff changeset
   264
  static void fail_continue(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // Return true if given address is in the mapped shared space.
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   267
  bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   268
  bool is_in_shared_region(const void* p, int idx) NOT_CDS_RETURN_(false);
18483
c021907fa0a7 8016075: Win32 crash with CDS enabled and small heap size
iklam
parents: 15936
diff changeset
   269
  void print_shared_spaces() NOT_CDS_RETURN;
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   270
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   271
  // Stop CDS sharing and unmap CDS regions.
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   272
  static void stop_sharing_and_unmap(const char* msg);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   273
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   274
  static void allocate_classpath_entry_table();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   275
  bool validate_classpath_entry_table();
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   276
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   277
  static SharedClassPathEntry* shared_classpath(int index) {
41739
4a4b9f6a4306 8167333: Invalid source path info might be used when creating ClassFileStream after CFLH transforms a shared classes in some cases
jiangli
parents: 41281
diff changeset
   278
    if (index < 0) {
4a4b9f6a4306 8167333: Invalid source path info might be used when creating ClassFileStream after CFLH transforms a shared classes in some cases
jiangli
parents: 41281
diff changeset
   279
      return NULL;
4a4b9f6a4306 8167333: Invalid source path info might be used when creating ClassFileStream after CFLH transforms a shared classes in some cases
jiangli
parents: 41281
diff changeset
   280
    }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   281
    assert(index < _classpath_entry_table_size, "sanity");
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   282
    char* p = (char*)_classpath_entry_table->data();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   283
    p += _classpath_entry_size * index;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   284
    return (SharedClassPathEntry*)p;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   285
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   286
  static const char* shared_classpath_name(int index) {
41739
4a4b9f6a4306 8167333: Invalid source path info might be used when creating ClassFileStream after CFLH transforms a shared classes in some cases
jiangli
parents: 41281
diff changeset
   287
    assert(index >= 0, "Sanity");
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   288
    return shared_classpath(index)->name();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   289
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   290
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   291
  static int get_number_of_share_classpaths() {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   292
    return _classpath_entry_table_size;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   293
  }
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   294
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   295
 private:
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   296
  bool  map_heap_data(MemRegion **heap_mem, int first, int max, int* num,
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   297
                      bool is_open = false) NOT_CDS_JAVA_HEAP_RETURN_(false);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   298
  bool  verify_mapped_heap_regions(int first, int num) NOT_CDS_JAVA_HEAP_RETURN_(false);
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   299
  void  dealloc_archive_heap_regions(MemRegion* regions, int num) NOT_CDS_JAVA_HEAP_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   301
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   302
#endif // SHARE_VM_MEMORY_FILEMAP_HPP