src/hotspot/share/memory/filemap.hpp
author iklam
Wed, 13 Nov 2019 16:36:54 -0800
changeset 59070 22ee476cc664
parent 58278 e47b459b315c
permissions -rw-r--r--
8231610: Relocate the CDS archive if it cannot be mapped to the requested address Reviewed-by: jiangli, coleenp, ccheung
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: 52674
diff changeset
     2
 * Copyright (c) 2003, 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: 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52674
diff changeset
    25
#ifndef SHARE_MEMORY_FILEMAP_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52674
diff changeset
    26
#define SHARE_MEMORY_FILEMAP_HPP
7397
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"
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
    29
#include "include/cds.h"
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    30
#include "memory/metaspaceShared.hpp"
20406
934f0b12daa9 8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents: 19319
diff changeset
    31
#include "memory/metaspace.hpp"
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54340
diff changeset
    32
#include "oops/compressedOops.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    33
#include "utilities/align.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
// Layout of the file:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//  header: dump of archive instance plus versioning info, datestamp, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//   [magic # = 0xF00BABA2]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//  ... padding to align on page-boundary
23515
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 20406
diff changeset
    39
//  read-write space
f4872ef5df09 8031820: NPG: Fix remaining references to metadata as oops in comments
coleenp
parents: 20406
diff changeset
    40
//  read-only space
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//  misc data (block offset table, string table, symbols, dictionary, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//  tag(666)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
static const int JVM_IDENT_MAX = 256;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
    46
class CHeapBitMap;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
    47
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 49329
diff changeset
    48
class SharedClassPathEntry {
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    49
  enum {
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    50
    modules_image_entry,
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    51
    jar_entry,
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    52
    signed_jar_entry,
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    53
    dir_entry,
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    54
    non_existent_entry,
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    55
    unknown_entry
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    56
  };
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    57
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    58
  void set_name(const char* name, TRAPS);
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    59
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    60
  u1     _type;
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
    61
  bool   _from_class_path_attr;
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    62
  time_t _timestamp;          // jar timestamp,  0 if is directory, modules image or other
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    63
  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
    64
  Array<char>* _name;
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    65
  Array<u1>*   _manifest;
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    66
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    67
public:
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
    68
  void init(bool is_modules_image, ClassPathEntry* cpe, TRAPS);
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    69
  void init_as_non_existent(const char* path, TRAPS);
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    70
  void metaspace_pointers_do(MetaspaceClosure* it);
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    71
  bool validate(bool is_class_path = true) const;
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    72
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    73
  // The _timestamp only gets set for jar files.
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    74
  bool has_timestamp() const {
27562
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
    75
    return _timestamp != 0;
47f369e3c69c 8049367: Modular Run-Time Images
chegar
parents: 27025
diff changeset
    76
  }
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    77
  bool is_dir()           const { return _type == dir_entry; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    78
  bool is_modules_image() const { return _type == modules_image_entry; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    79
  bool is_jar()           const { return _type == jar_entry; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    80
  bool is_signed()        const { return _type == signed_jar_entry; }
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    81
  void set_is_signed() {
50199
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    82
    _type = signed_jar_entry;
83d8b3a25f25 8199807: AppCDS performs overly restrictive path matching check.
jiangli
parents: 50039
diff changeset
    83
  }
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
    84
  bool from_class_path_attr() { return _from_class_path_attr; }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    85
  time_t timestamp() const { return _timestamp; }
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    86
  long   filesize()  const { return _filesize; }
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    87
  const char* name() const;
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    88
  const char* manifest() const {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    89
    return (_manifest == NULL) ? NULL : (const char*)_manifest->data();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    90
  }
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    91
  int manifest_size() const {
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
    92
    return (_manifest == NULL) ? 0 : _manifest->length();
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35231
diff changeset
    93
  }
50039
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
    94
  void set_manifest(Array<u1>* manifest) {
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
    95
    _manifest = manifest;
9fec54fe663d 8197954: Remove unnecessary intermediary APIs from AppCDS implementation
iklam
parents: 49931
diff changeset
    96
  }
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
    97
  bool check_non_existent() const;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    98
};
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
    99
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   100
struct ArchiveHeapOopmapInfo {
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   101
  address _oopmap;               // bitmap for relocating embedded oops
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   102
  size_t  _oopmap_size_in_bits;
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   103
};
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   104
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   105
class SharedPathTable {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   106
  Array<u8>* _table;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   107
  int _size;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   108
public:
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   109
  SharedPathTable() : _table(NULL), _size(0) {}
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   110
  SharedPathTable(Array<u8>* table, int size) : _table(table), _size(size) {}
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   111
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   112
  void dumptime_init(ClassLoaderData* loader_data, Thread* THREAD);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   113
  void metaspace_pointers_do(MetaspaceClosure* it);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   114
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   115
  int size() {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   116
    return _size;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   117
  }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   118
  SharedClassPathEntry* path_at(int index) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   119
    if (index < 0) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   120
      return NULL;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   121
    }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   122
    assert(index < _size, "sanity");
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   123
    char* p = (char*)_table->data();
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   124
    p += sizeof(SharedClassPathEntry) * index;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   125
    return (SharedClassPathEntry*)p;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   126
  }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   127
  Array<u8>* table() {return _table;}
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   128
  void set_table(Array<u8>* table) {_table = table;}
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   129
};
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   130
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   131
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   132
class FileMapRegion: private CDSFileMapRegion {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   133
  void assert_is_heap_region() const {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   134
    assert(_is_heap_region, "must be heap region");
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   135
  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   136
  void assert_is_not_heap_region() const {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   137
    assert(!_is_heap_region, "must not be heap region");
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   138
  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   139
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   140
public:
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   141
  static FileMapRegion* cast(CDSFileMapRegion* p) {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   142
    return (FileMapRegion*)p;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   143
  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   144
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   145
  // Accessors
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   146
  int crc()                         const { return _crc; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   147
  size_t file_offset()              const { return _file_offset; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   148
  size_t mapping_offset()           const { return _mapping_offset; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   149
  size_t mapping_end_offset()       const { return _mapping_offset + used_aligned(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   150
  size_t used()                     const { return _used; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   151
  size_t used_aligned()             const; // aligned up to os::vm_allocation_granularity()
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   152
  char*  mapped_base()              const { assert_is_not_heap_region(); return _mapped_base; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   153
  char*  mapped_end()               const { return mapped_base()        + used_aligned(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   154
  bool   read_only()                const { return _read_only != 0; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   155
  bool   allow_exec()               const { return _allow_exec != 0; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   156
  bool   mapped_from_file()         const { return _mapped_from_file != 0; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   157
  size_t oopmap_offset()            const { assert_is_heap_region();     return _oopmap_offset; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   158
  size_t oopmap_size_in_bits()      const { assert_is_heap_region();     return _oopmap_size_in_bits; }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   159
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   160
  void set_file_offset(size_t s)     { _file_offset = s; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   161
  void set_read_only(bool v)         { _read_only = v; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   162
  void set_mapped_base(char* p)      { _mapped_base = p; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   163
  void set_mapped_from_file(bool v)  { _mapped_from_file = v; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   164
  void init(int region_index, char* base, size_t size, bool read_only,
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   165
            bool allow_exec, int crc);
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   166
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   167
  void init_oopmap(size_t oopmap_offset, size_t size_in_bits) {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   168
    _oopmap_offset = oopmap_offset;
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   169
    _oopmap_size_in_bits = size_in_bits;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   170
  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   171
};
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   172
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   173
class FileMapHeader: private CDSFileMapHeaderBase {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   174
  friend class CDSOffsets;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   175
  friend class VMStructs;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   176
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   177
  size_t _header_size;
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   178
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   179
  // The following fields record the states of the VM during dump time.
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   180
  // They are compared with the runtime states to see if the archive
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   181
  // can be used.
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   182
  size_t _alignment;                // how shared archive should be aligned
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   183
  int    _obj_alignment;            // value of ObjectAlignmentInBytes
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   184
  address _narrow_oop_base;         // compressed oop encoding base
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   185
  int    _narrow_oop_shift;         // compressed oop encoding shift
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   186
  bool   _compact_strings;          // value of CompactStrings
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   187
  uintx  _max_heap_size;            // java max heap size during dumping
54780
f8d182aedc92 8223136: Move compressed oops functions to CompressedOops class
stefank
parents: 54340
diff changeset
   188
  CompressedOops::Mode _narrow_oop_mode; // compressed oop encoding mode
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   189
  int     _narrow_klass_shift;      // save narrow klass base and shift
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   190
  size_t  _misc_data_patching_offset;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   191
  size_t  _serialized_data_offset;  // Data accessed using {ReadClosure,WriteClosure}::serialize()
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   192
  size_t  _i2i_entry_code_buffers_offset;
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   193
  size_t  _i2i_entry_code_buffers_size;
58015
dd84de796f2c 8224815: Remove non-GC uses of CollectedHeap::is_in_reserved()
eosterlund
parents: 57898
diff changeset
   194
  address _heap_end;                // heap end at dump time.
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   195
  bool _base_archive_is_default;    // indicates if the base archive is the system default one
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   196
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   197
  // The following fields are all sanity checks for whether this archive
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   198
  // will function correctly with this JVM and the bootclasspath it's
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   199
  // invoked with.
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   200
  char  _jvm_ident[JVM_IDENT_MAX];  // identifier string of the jvm that created this dump
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   201
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   202
  // size of the base archive name including NULL terminator
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   203
  size_t _base_archive_name_size;
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   204
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   205
  // The following is a table of all the boot/app/module path entries that were used
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   206
  // during dumping. At run time, we validate these entries according to their
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   207
  // SharedClassPathEntry::_type. See:
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   208
  //      check_nonempty_dir_in_shared_path_table()
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   209
  //      validate_shared_path_table()
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   210
  //      validate_non_existent_class_paths()
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   211
  size_t _shared_path_table_offset;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   212
  int    _shared_path_table_size;
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   213
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   214
  jshort _app_class_paths_start_index;  // Index of first app classpath entry
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   215
  jshort _app_module_paths_start_index; // Index of first module path entry
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   216
  jshort _num_module_paths;             // number of module path entries
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   217
  jshort _max_used_path_index;          // max path index referenced during CDS dump
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   218
  bool   _verify_local;                 // BytecodeVerificationLocal setting
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   219
  bool   _verify_remote;                // BytecodeVerificationRemote setting
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   220
  bool   _has_platform_or_app_classes;  // Archive contains app classes
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   221
  char*  _requested_base_address;       // Archive relocation is not necessary if we map with this base address.
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   222
  char*  _mapped_base_address;          // Actual base address where archive is mapped.
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   223
52596
dfa02b3f728c 8201375: Add the AllowArchivingWithJavaAgent diagnostic vm option to allow the use of the -javaagent option during CDS dumping
ccheung
parents: 52514
diff changeset
   224
  bool   _allow_archiving_with_java_agent; // setting of the AllowArchivingWithJavaAgent option
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   225
  size_t _ptrmap_size_in_bits;          // Size of pointer relocation bitmap
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   226
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   227
  char* from_mapped_offset(size_t offset) const {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   228
    return mapped_base_address() + offset;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   229
  }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   230
  void set_mapped_offset(char* p, size_t *offset) {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   231
    assert(p >= mapped_base_address(), "sanity");
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   232
    *offset = p - mapped_base_address();
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   233
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   234
public:
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   235
  // Accessors -- fields declared in CDSFileMapHeaderBase
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   236
  unsigned int magic() const {return _magic;}
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   237
  int crc()                               const { return _crc; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   238
  int version()                           const { return _version; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   239
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   240
  void set_crc(int crc_value)                   { _crc = crc_value; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   241
  void set_version(int v)                       { _version = v; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   242
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   243
  // Accessors -- fields declared in FileMapHeader
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   244
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   245
  size_t header_size()                     const { return _header_size; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   246
  size_t alignment()                       const { return _alignment; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   247
  int obj_alignment()                      const { return _obj_alignment; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   248
  address narrow_oop_base()                const { return _narrow_oop_base; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   249
  int narrow_oop_shift()                   const { return _narrow_oop_shift; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   250
  bool compact_strings()                   const { return _compact_strings; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   251
  uintx max_heap_size()                    const { return _max_heap_size; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   252
  CompressedOops::Mode narrow_oop_mode()   const { return _narrow_oop_mode; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   253
  int narrow_klass_shift()                 const { return _narrow_klass_shift; }
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   254
  address narrow_klass_base()              const { return (address)mapped_base_address(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   255
  char* misc_data_patching_start()         const { return from_mapped_offset(_misc_data_patching_offset); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   256
  char* serialized_data_start()            const { return from_mapped_offset(_serialized_data_offset); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   257
  address i2i_entry_code_buffers()         const { return (address)from_mapped_offset(_i2i_entry_code_buffers_offset); }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   258
  size_t i2i_entry_code_buffers_size()     const { return _i2i_entry_code_buffers_size; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   259
  address heap_end()                       const { return _heap_end; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   260
  bool base_archive_is_default()           const { return _base_archive_is_default; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   261
  const char* jvm_ident()                  const { return _jvm_ident; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   262
  size_t base_archive_name_size()          const { return _base_archive_name_size; }
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   263
  char* requested_base_address()           const { return _requested_base_address; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   264
  char* mapped_base_address()              const { return _mapped_base_address; }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   265
  bool has_platform_or_app_classes()       const { return _has_platform_or_app_classes; }
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   266
  size_t ptrmap_size_in_bits()             const { return _ptrmap_size_in_bits; }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   267
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   268
  // FIXME: These should really return int
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   269
  jshort max_used_path_index()             const { return _max_used_path_index; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   270
  jshort app_module_paths_start_index()    const { return _app_module_paths_start_index; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   271
  jshort app_class_paths_start_index()     const { return _app_class_paths_start_index; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   272
  jshort num_module_paths()                const { return _num_module_paths; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   273
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   274
  void set_has_platform_or_app_classes(bool v)   { _has_platform_or_app_classes = v; }
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   275
  void set_misc_data_patching_start(char* p)     { set_mapped_offset(p, &_misc_data_patching_offset); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   276
  void set_serialized_data_start(char* p)        { set_mapped_offset(p, &_serialized_data_offset); }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   277
  void set_base_archive_name_size(size_t s)      { _base_archive_name_size = s; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   278
  void set_base_archive_is_default(bool b)       { _base_archive_is_default = b; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   279
  void set_header_size(size_t s)                 { _header_size = s; }
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   280
  void set_ptrmap_size_in_bits(size_t s)         { _ptrmap_size_in_bits = s; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   281
  void set_mapped_base_address(char* p)          { _mapped_base_address = p; }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   282
  void set_i2i_entry_code_buffers(address p, size_t s) {
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   283
    set_mapped_offset((char*)p, &_i2i_entry_code_buffers_offset);
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   284
    _i2i_entry_code_buffers_size = s;
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   285
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   286
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   287
  void set_shared_path_table(SharedPathTable table) {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   288
    set_mapped_offset((char*)table.table(), &_shared_path_table_offset);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   289
    _shared_path_table_size = table.size();
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   290
  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   291
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   292
  void set_final_requested_base(char* b) {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   293
    _requested_base_address = b;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   294
    _mapped_base_address = 0;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   295
  }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   296
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   297
  SharedPathTable shared_path_table() const {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   298
    return SharedPathTable((Array<u8>*)from_mapped_offset(_shared_path_table_offset),
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   299
                           _shared_path_table_size);
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   300
  }
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   301
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   302
  bool validate();
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   303
  int compute_crc();
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   304
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   305
  FileMapRegion* space_at(int i) {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   306
    assert(is_valid_region(i), "invalid region");
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   307
    return FileMapRegion::cast(&_space[i]);
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   308
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   309
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   310
  void populate(FileMapInfo* info, size_t alignment);
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   311
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   312
  static bool is_valid_region(int region) {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   313
    return (0 <= region && region < NUM_CDS_REGIONS);
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   314
  }
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   315
};
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   316
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
   317
class FileMapInfo : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
private:
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   319
  friend class ManifestStream;
49896
ec2dd30adbc1 8174994: SA: clhsdb printmdo throws WrongTypeException when attached to a process with CDS
jgeorge
parents: 49739
diff changeset
   320
  friend class VMStructs;
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   321
  friend class CDSOffsets;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   322
  friend class FileMapHeader;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   324
  bool           _is_static;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   325
  bool           _file_open;
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   326
  bool           _is_mapped;
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   327
  int            _fd;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   328
  size_t         _file_offset;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   329
  const char*    _full_path;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   330
  const char*    _base_archive_name;
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   331
  FileMapHeader* _header;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   333
  // TODO: Probably change the following to be non-static
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   334
  static SharedPathTable       _shared_path_table;
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   335
  static bool                  _validating_shared_path_table;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   336
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // FileMapHeader describes the shared space data in the file to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // mapped.  This structure gets written to a file.  It is not a class, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // that the compilers don't add any compiler-private data to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  static FileMapInfo* _current_info;
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   342
  static FileMapInfo* _dynamic_archive_info;
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   343
  static bool _heap_pointers_need_patching;
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   344
  static bool _memory_mapping_failed;
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   345
  static GrowableArray<const char*>* _non_existent_class_paths;
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   346
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   347
  FileMapHeader *header() const       { return _header; }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   348
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   349
public:
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   350
  static bool get_base_archive_name_from_header(const char* archive_name,
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   351
                                                int* size, char** base_archive_name);
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   352
  static bool check_archive(const char* archive_name, bool is_static);
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   353
  static SharedPathTable shared_path_table() {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   354
    return _shared_path_table;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   355
  }
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   356
  void restore_shared_path_table();
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   357
  bool init_from_file(int fd);
46746
ea379ebb9447 8072061: Automatically determine optimal sizes for the CDS regions
iklam
parents: 46742
diff changeset
   358
  static void metaspace_pointers_do(MetaspaceClosure* it);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   360
  void log_paths(const char* msg, int start_idx, int end_idx);
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   361
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   362
  FileMapInfo(bool is_static);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   363
  ~FileMapInfo();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   365
  // Accessors
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   366
  int    compute_header_crc()  const { return header()->compute_crc(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   367
  void   set_header_crc(int crc)     { header()->set_crc(crc); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   368
  int    space_crc(int i)      const { return space_at(i)->crc(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  void   populate_header(size_t alignment);
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   370
  bool   validate_header();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  void   invalidate();
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   372
  int    crc()                 const { return header()->crc(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   373
  int    version()             const { return header()->version(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   374
  size_t alignment()           const { return header()->alignment(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   375
  address narrow_oop_base()    const { return header()->narrow_oop_base(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   376
  int     narrow_oop_shift()   const { return header()->narrow_oop_shift(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   377
  uintx   max_heap_size()      const { return header()->max_heap_size(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   378
  address narrow_klass_base()  const { return header()->narrow_klass_base(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   379
  int     narrow_klass_shift() const { return header()->narrow_klass_shift(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   380
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   381
  CompressedOops::Mode narrow_oop_mode()      const { return header()->narrow_oop_mode(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   382
  jshort app_module_paths_start_index()       const { return header()->app_module_paths_start_index(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   383
  jshort app_class_paths_start_index()        const { return header()->app_class_paths_start_index(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   384
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   385
  char* misc_data_patching_start()            const { return header()->misc_data_patching_start(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   386
  void  set_misc_data_patching_start(char* p) const { header()->set_misc_data_patching_start(p); }
58278
e47b459b315c 8231278: Rename FileMapHeader::_read_only_tables_start to _serialized_data_start
iklam
parents: 58277
diff changeset
   387
  char* serialized_data_start()               const { return header()->serialized_data_start(); }
e47b459b315c 8231278: Rename FileMapHeader::_read_only_tables_start to _serialized_data_start
iklam
parents: 58277
diff changeset
   388
  void  set_serialized_data_start(char* p)    const { header()->set_serialized_data_start(p); }
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   389
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   390
  bool  is_file_position_aligned() const;
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   391
  void  align_file_position();
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   392
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   393
  address i2i_entry_code_buffers()            const { return header()->i2i_entry_code_buffers();  }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   394
  size_t i2i_entry_code_buffers_size()        const { return header()->i2i_entry_code_buffers_size(); }
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   395
  void set_i2i_entry_code_buffers(address addr, size_t s) const {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   396
    header()->set_i2i_entry_code_buffers(addr, s);
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   397
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   398
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   399
  bool is_static()                            const { return _is_static; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   400
  bool is_mapped()                            const { return _is_mapped; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   401
  void set_is_mapped(bool v)                        { _is_mapped = v; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   402
  const char* full_path()                     const { return _full_path; }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   403
  void set_final_requested_base(char* b);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   404
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   405
  char* requested_base_address()           const { return header()->requested_base_address(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   406
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   407
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   408
  class DynamicArchiveHeader* dynamic_header() const {
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   409
    assert(!is_static(), "must be");
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   410
    return (DynamicArchiveHeader*)header();
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   411
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   412
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   413
  void set_has_platform_or_app_classes(bool v) {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   414
    header()->set_has_platform_or_app_classes(v);
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   415
  }
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   416
  bool has_platform_or_app_classes() const {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   417
    return header()->has_platform_or_app_classes();
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   418
  }
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   419
15936
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   420
  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
   421
    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
   422
    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
   423
  }
4fda1079e8a3 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 15101
diff changeset
   424
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   425
  static void set_current_info(FileMapInfo* info) {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   426
    CDS_ONLY(_current_info = info;)
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   427
  }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   428
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   429
  static FileMapInfo* dynamic_info() {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   430
    CDS_ONLY(return _dynamic_archive_info;)
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   431
    NOT_CDS(return NULL;)
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   432
  }
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   433
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  static void assert_mark(bool check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  // File manipulation.
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   437
  bool  initialize() NOT_CDS_RETURN_(false);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   438
  bool  open_for_read();
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   439
  void  open_for_write(const char* path = NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  void  write_header();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  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
   442
                     bool read_only, bool allow_exec);
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   443
  void  write_bitmap_region(const CHeapBitMap* ptrmap);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   444
  size_t write_archive_heap_regions(GrowableArray<MemRegion> *heap_mem,
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   445
                                    GrowableArray<ArchiveHeapOopmapInfo> *oopmaps,
58277
00a98f0aa1b3 8231257: Avoid calling FileMapInfo::write_region twice
iklam
parents: 58096
diff changeset
   446
                                    int first_region_id, int max_num_regions);
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   447
  void  write_bytes(const void* buffer, size_t count);
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   448
  void  write_bytes_aligned(const void* buffer, size_t count);
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   449
  size_t  read_bytes(void* buffer, size_t count);
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   450
  MapArchiveResult map_regions(int regions[], int num_regions, char* mapped_base_address, ReservedSpace rs);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   451
  void  unmap_regions(int regions[], int num_regions);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   452
  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
   453
  void  fixup_mapped_heap_regions() NOT_CDS_JAVA_HEAP_RETURN;
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   454
  void  patch_archived_heap_embedded_pointers() NOT_CDS_JAVA_HEAP_RETURN;
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   455
  void  patch_archived_heap_embedded_pointers(MemRegion* ranges, int num_ranges,
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   456
                                              int first_region_idx) NOT_CDS_JAVA_HEAP_RETURN;
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   457
  bool  has_heap_regions()  NOT_CDS_JAVA_HEAP_RETURN_(false);
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   458
  MemRegion get_heap_regions_range_with_current_oop_encoding_mode() NOT_CDS_JAVA_HEAP_RETURN_(MemRegion());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void  unmap_region(int i);
27025
f4805f778f16 8044269: Analysis of archive files.
jiangli
parents: 26296
diff changeset
   460
  bool  verify_region_checksum(int i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  void  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  bool  is_open() { return _file_open; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   463
  ReservedSpace reserve_shared_memory();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  // JVM/TI RedefineClasses() support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // Remap the shared readonly space to shared readwrite, private.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  bool  remap_shared_readonly_as_readwrite();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // Errors.
26296
fd6180a0e0ab 8055754: filemap.cpp does not compile with clang
sla
parents: 26135
diff changeset
   470
  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
   471
  static void fail_continue(const char *msg, ...) ATTRIBUTE_PRINTF(1, 2);
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   472
  static bool memory_mapping_failed() {
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   473
    CDS_ONLY(return _memory_mapping_failed;)
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   474
    NOT_CDS(return false;)
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   475
  }
37439
e8970711113b 8145221: Use trampolines for i2i and i2c entries in Methods that are stored in CDS archive
ccheung
parents: 36508
diff changeset
   476
  bool is_in_shared_region(const void* p, int idx) NOT_CDS_RETURN_(false);
19319
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   477
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   478
  // Stop CDS sharing and unmap CDS regions.
0ad35be0733a 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 18483
diff changeset
   479
  static void stop_sharing_and_unmap(const char* msg);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   480
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   481
  static void allocate_shared_path_table();
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   482
  static int add_shared_classpaths(int i, const char* which, ClassPathEntry *cpe, TRAPS);
49931
840e26123940 8193213: Make the UseAppCDS option obsolete.
jiangli
parents: 49896
diff changeset
   483
  static void check_nonempty_dir_in_shared_path_table();
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   484
  bool validate_shared_path_table();
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   485
  void validate_non_existent_class_paths();
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   486
  static void set_shared_path_table(FileMapInfo* info) {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   487
    _shared_path_table = info->header()->shared_path_table();
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   488
  }
57898
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   489
  static void update_jar_manifest(ClassPathEntry *cpe, SharedClassPathEntry* ent, TRAPS);
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   490
  static int num_non_existent_class_paths();
5ddb746d45e0 8227370: Remove SharedPathsMiscInfo
iklam
parents: 57897
diff changeset
   491
  static void record_non_existent_class_path_entry(const char* path);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   492
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   493
#if INCLUDE_JVMTI
54340
2221f042556d 8221351: Crash in KlassFactory::check_shared_class_file_load_hook
iklam
parents: 53884
diff changeset
   494
  static ClassFileStream* open_stream_for_jvmti(InstanceKlass* ik, Handle class_loader, TRAPS);
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   495
#endif
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   496
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   497
  static SharedClassPathEntry* shared_path(int index) {
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   498
    return _shared_path_table.path_at(index);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   499
  }
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   500
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   501
  static const char* shared_path_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
   502
    assert(index >= 0, "Sanity");
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   503
    return shared_path(index)->name();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   504
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   505
49739
00805b129186 8194812: Extend class-data sharing to support the module path
ccheung
parents: 49364
diff changeset
   506
  static int get_number_of_shared_paths() {
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   507
    return _shared_path_table.size();
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 23515
diff changeset
   508
  }
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   509
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   510
  char* region_addr(int idx);
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   511
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   512
  // The offset of the first core region in the archive, relative to SharedBaseAddress
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   513
  size_t mapping_base_offset() const { return first_core_space()->mapping_offset(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   514
  // The offset of the (exclusive) end of the last core region in this archive, relative to SharedBaseAddress
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   515
  size_t mapping_end_offset()  const { return last_core_space()->mapping_end_offset(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   516
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   517
  char* mapped_base()    const { return first_core_space()->mapped_base(); }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   518
  char* mapped_end()     const { return last_core_space()->mapped_end();   }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   519
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   520
  // Non-zero if the archive needs to be mapped a non-default location due to ASLR.
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   521
  intx relocation_delta() const {
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   522
    return header()->mapped_base_address() - header()->requested_base_address();
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   523
  }
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   524
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   525
  FileMapRegion* first_core_space() const;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   526
  FileMapRegion* last_core_space() const;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   527
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   528
 private:
58277
00a98f0aa1b3 8231257: Avoid calling FileMapInfo::write_region twice
iklam
parents: 58096
diff changeset
   529
  void  seek_to_position(size_t pos);
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
   530
  char* skip_first_path_entry(const char* path) NOT_CDS_RETURN_(NULL);
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
   531
  int   num_paths(const char* path) NOT_CDS_RETURN_(0);
57897
e2e315f1aa63 8230168: Use ClasspathStream for FileMapInfo::create_path_array
iklam
parents: 55535
diff changeset
   532
  GrowableArray<const char*>* create_path_array(const char* path) NOT_CDS_RETURN_(NULL);
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   533
  bool  classpath_failure(const char* msg, const char* name) NOT_CDS_RETURN_(false);
57897
e2e315f1aa63 8230168: Use ClasspathStream for FileMapInfo::create_path_array
iklam
parents: 55535
diff changeset
   534
  bool  check_paths(int shared_path_start_idx, int num_paths,
e2e315f1aa63 8230168: Use ClasspathStream for FileMapInfo::create_path_array
iklam
parents: 55535
diff changeset
   535
                    GrowableArray<const char*>* rp_array) NOT_CDS_RETURN_(false);
55535
df1925d3d409 8226967: Minimal VM: FALSE was not declared in this scope
aoqi
parents: 55524
diff changeset
   536
  bool  validate_boot_class_paths() NOT_CDS_RETURN_(false);
df1925d3d409 8226967: Minimal VM: FALSE was not declared in this scope
aoqi
parents: 55524
diff changeset
   537
  bool  validate_app_class_paths(int shared_app_paths_len) NOT_CDS_RETURN_(false);
46810
7dad333205cd 8179302: Pre-resolve constant pool string entries and cache resolved_reference arrays in CDS archive.
jiangli
parents: 46746
diff changeset
   538
  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
   539
                      bool is_open = false) NOT_CDS_JAVA_HEAP_RETURN_(false);
54927
1512d88b24c6 8207812: Implement Dynamic CDS Archive
ccheung
parents: 54786
diff changeset
   540
  bool  region_crc_check(char* buf, size_t size, int expected_crc) NOT_CDS_RETURN_(false);
52674
c9325aa887da 8214118: HeapRegions marked as archive even if CDS mapping fails
sjohanss
parents: 52596
diff changeset
   541
  void  dealloc_archive_heap_regions(MemRegion* regions, int num, bool is_open) NOT_CDS_JAVA_HEAP_RETURN;
59070
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   542
  void  map_heap_regions_impl() NOT_CDS_JAVA_HEAP_RETURN;
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   543
  char* map_relocation_bitmap(size_t& bitmap_size);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   544
  MapArchiveResult map_region(int i, intx addr_delta, char* mapped_base_address, ReservedSpace rs);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   545
  bool  read_region(int i, char* base, size_t size);
22ee476cc664 8231610: Relocate the CDS archive if it cannot be mapped to the requested address
iklam
parents: 58278
diff changeset
   546
  bool  relocate_pointers(intx addr_delta);
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   547
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   548
  FileMapRegion* space_at(int i) const {
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   549
    return header()->space_at(i);
51477
e77d7687c831 8209657: Refactor filemap.hpp to simplify integration with Serviceability Agent
iklam
parents: 51439
diff changeset
   550
  }
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   551
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   552
  // The starting address of spc, as calculated with CompressedOop::decode_non_null()
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   553
  address start_address_as_decoded_with_current_oop_encoding_mode(FileMapRegion* spc) {
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   554
    return decode_start_address(spc, true);
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   555
  }
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   556
51720
b7bfd64e43a6 8210523: runtime/appcds/cacheObject/DifferentHeapSizes.java crash
iklam
parents: 51491
diff changeset
   557
  // The starting address of spc, as calculated with HeapShared::decode_from_archive()
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   558
  address start_address_as_decoded_from_archive(FileMapRegion* spc) {
51491
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   559
    return decode_start_address(spc, false);
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   560
  }
187c84a5efe1 8208658: Make CDS archived heap regions usable even if compressed oop encoding has changed
iklam
parents: 51477
diff changeset
   561
58096
0d97bf7cf8a4 8230586: Encapsulate fields in filemap.hpp
iklam
parents: 58015
diff changeset
   562
  address decode_start_address(FileMapRegion* spc, bool with_current_oop_encoding_mode);
53884
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   563
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   564
#if INCLUDE_JVMTI
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   565
  static ClassPathEntry** _classpath_entries_for_jvmti;
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   566
  static ClassPathEntry* get_classpath_entry_for_jvmti(int i, TRAPS);
1a7b57d02107 8218751: Do not store original classfiles inside the CDS archive
iklam
parents: 53244
diff changeset
   567
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   569
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52674
diff changeset
   570
#endif // SHARE_MEMORY_FILEMAP_HPP