hotspot/src/share/vm/memory/restore.cpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
permissions -rw-r--r--
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_restore.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Closure for serializing initialization data in from a data area
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// (oop_array) read from the shared file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ReadClosure : public SerializeOopClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  oop** _oop_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  inline oop nextOop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    return *(*_oop_array)++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  ReadClosure(oop** oop_array) { _oop_array = oop_array; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  void do_oop(oop* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    assert(SharedSkipVerify || *p == NULL || *p == Universe::klassKlassObj(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
           "initializing previously initialized oop.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    oop obj = nextOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    assert(SharedSkipVerify || (intptr_t)obj >= 0 || (intptr_t)obj < -100,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
           "hit tag while initializing oops.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    assert(SharedSkipVerify || obj->is_oop_or_null(), "invalid oop");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    *p = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    53
  void do_oop(narrowOop* p) { ShouldNotReachHere(); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    54
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  void do_ptr(void** p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    assert(*p == NULL, "initializing previous initialized pointer.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    void* obj = nextOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    assert((intptr_t)obj >= 0 || (intptr_t)obj < -100,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
           "hit tag while initializing ptrs.");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    *p = obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  void do_ptr(HeapWord** p) { do_ptr((void **) p); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  void do_int(int* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    *p = (int)(intptr_t)nextOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  void do_size_t(size_t* p) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    // Assumes that size_t and pointers are the same size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    *p = (size_t)nextOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  void do_tag(int tag) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    int old_tag;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    do_int(&old_tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    FileMapInfo::assert_mark(tag == old_tag);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void do_region(u_char* start, size_t size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    assert((intptr_t)start % sizeof(oop) == 0, "bad alignment");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    assert(size % sizeof(oop) == 0, "bad size");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    do_tag((int)size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    while (size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
      *(oop*)start = nextOop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      start += sizeof(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
      size -= sizeof(oop);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  bool reading() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// Read the oop and miscellaneous data from the shared file, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// serialize it out to its various destinations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void CompactingPermGenGen::initialize_oops() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  FileMapInfo *mapinfo = FileMapInfo::current_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  char* buffer = mapinfo->region_base(md);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // Skip over (reserve space for) a list of addresses of C++ vtables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // for Klass objects.  They get filled in later.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Skip over (reserve space for) dummy C++ vtables Klass objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // They are used as is.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void** vtbl_list = (void**)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  buffer += vtbl_list_size * sizeof(void*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  intptr_t vtable_size = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  buffer += vtable_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // Create the symbol table using the bucket array at this spot in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // misc data space.  Since the symbol table is often modified, this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // region (of mapped pages) will be copy-on-write.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  int symbolTableLen = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  int number_of_entries = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  SymbolTable::create_table((HashtableBucket*)buffer, symbolTableLen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                            number_of_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  buffer += symbolTableLen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Create the string table using the bucket array at this spot in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // misc data space.  Since the string table is often modified, this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // region (of mapped pages) will be copy-on-write.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  int stringTableLen = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  number_of_entries = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  StringTable::create_table((HashtableBucket*)buffer, stringTableLen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
                            number_of_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  buffer += stringTableLen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Create the shared dictionary using the bucket array at this spot in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // the misc data space.  Since the shared dictionary table is never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // modified, this region (of mapped pages) will be (effectively, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // not explicitly) read-only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  int sharedDictionaryLen = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  number_of_entries = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  SystemDictionary::set_shared_dictionary((HashtableBucket*)buffer,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
                                          sharedDictionaryLen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
                                          number_of_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  buffer += sharedDictionaryLen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Create the package info table using the bucket array at this spot in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // the misc data space.  Since the package info table is never
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // modified, this region (of mapped pages) will be (effectively, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // not explicitly) read-only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  int pkgInfoLen = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  number_of_entries = *(intptr_t*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  ClassLoader::create_package_info_table((HashtableBucket*)buffer, pkgInfoLen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
                                         number_of_entries);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  buffer += pkgInfoLen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  ClassLoader::verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // The following data in the shared misc data region are the linked
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // list elements (HashtableEntry objects) for the symbol table, string
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // table, and shared dictionary.  The heap objects refered to by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // symbol table, string table, and shared dictionary are permanent and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // unmovable.  Since new entries added to the string and symbol tables
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // are always added at the beginning of the linked lists, THESE LINKED
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // LIST ELEMENTS ARE READ-ONLY.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  int len = *(intptr_t*)buffer; // skip over symbol table entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  buffer += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  len = *(intptr_t*)buffer;     // skip over string table entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  buffer += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  len = *(intptr_t*)buffer;     // skip over shared dictionary entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  buffer += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  len = *(intptr_t*)buffer;     // skip over package info table entries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  buffer += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  len = *(intptr_t*)buffer;     // skip over package info table char[] arrays.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  buffer += sizeof(intptr_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  buffer += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  oop* oop_array = (oop*)buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  ReadClosure rc(&oop_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  serialize_oops(&rc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
}