hotspot/src/share/vm/memory/filemap.hpp
author zgu
Fri, 19 Oct 2012 21:40:07 -0400
changeset 14120 7d298141c258
parent 13728 882756847a04
child 15101 58d43bf04c45
permissions -rw-r--r--
7199092: NMT: NMT needs to deal overlapped virtual memory ranges Summary: Enhanced virtual memory tracking to track committed regions as well as reserved regions, so NMT now can generate virtual memory map. Reviewed-by: acorn, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
     2
 * Copyright (c) 2003, 2012, 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
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    28
#include "memory/metaspaceShared.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// Layout of the file:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
//  header: dump of archive instance plus versioning info, datestamp, etc.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//   [magic # = 0xF00BABA2]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//  ... padding to align on page-boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//  read-write space from CompactingPermGenGen
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//  read-only space from CompactingPermGenGen
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//  misc data (block offset table, string table, symbols, dictionary, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//  tag(666)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
static const int JVM_SHARED_JARS_MAX = 128;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
static const int JVM_SPACENAME_MAX = 128;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
static const int JVM_IDENT_MAX = 256;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
static const int JVM_ARCH_MAX = 12;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    45
class Metaspace;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 7397
diff changeset
    47
class FileMapInfo : public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    _invalid_version = -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    _current_version = 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  bool  _file_open;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  int   _fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  long  _file_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // FileMapHeader describes the shared space data in the file to be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // mapped.  This structure gets written to a file.  It is not a class, so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // that the compilers don't add any compiler-private data to it.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  struct FileMapHeader {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    int    _magic;                    // identify file type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    int    _version;                  // (from enum, above.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    size_t _alignment;                // how shared archive should be aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    struct space_info {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      int    _file_offset;   // sizeof(this) rounded to vm page size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      char*  _base;          // copy-on-write base address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      size_t _capacity;      // for validity checking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      size_t _used;          // for setting space top on read
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      bool   _read_only;     // read only space?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      bool   _allow_exec;    // executable code in space?
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    74
    } _space[MetaspaceShared::n_regions];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // The following fields are all sanity checks for whether this archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    // will function correctly with this JVM and the bootclasspath it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // invoked with.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    char  _arch[JVM_ARCH_MAX];            // architecture
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    char  _jvm_ident[JVM_IDENT_MAX];      // identifier for jvm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    int   _num_jars;              // Number of jars in bootclasspath
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    // Per jar file data:  timestamp, size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      time_t _timestamp;          // jar timestamp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      long   _filesize;           // jar file size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    } _jar[JVM_SHARED_JARS_MAX];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  } _header;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  const char* _full_path;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static FileMapInfo* _current_info;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  bool  init_from_file(int fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  void  align_file_position();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  FileMapInfo() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    _file_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    _file_open = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    _header._version = _invalid_version;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static int current_version()        { return _current_version; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  void   populate_header(size_t alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  bool   validate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  void   invalidate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  int    version()                    { return _header._version; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  size_t alignment()                  { return _header._alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  size_t space_capacity(int i)        { return _header._space[i]._capacity; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  char*  region_base(int i)           { return _header._space[i]._base; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  struct FileMapHeader* header()      { return &_header; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  static void set_current_info(FileMapInfo* info)  { _current_info = info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  static FileMapInfo* current_info()  { return _current_info; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static void assert_mark(bool check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // File manipulation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  bool  initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  bool  open_for_read();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void  open_for_write();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void  write_header();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   123
  void  write_space(int i, Metaspace* space, bool read_only);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void  write_region(int region, char* base, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
                     size_t capacity, bool read_only, bool allow_exec);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void  write_bytes(const void* buffer, int count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  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
   128
  char* map_region(int i);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  void  unmap_region(int i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  void  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool  is_open() { return _file_open; }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
   132
  ReservedSpace reserve_shared_memory();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // JVM/TI RedefineClasses() support:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Remap the shared readonly space to shared readwrite, private.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  bool  remap_shared_readonly_as_readwrite();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Errors.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static void fail_stop(const char *msg, ...);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  void fail_continue(const char *msg, ...);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // Return true if given address is in the mapped shared space.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  bool is_in_shared_space(const void* p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   145
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   146
#endif // SHARE_VM_MEMORY_FILEMAP_HPP