hotspot/src/share/vm/gc_implementation/parNew/parOopClosures.inline.hpp
author coleenp
Sun, 13 Apr 2008 17:43:42 -0400
changeset 360 21d113ecbf6a
parent 1 489c9b5090e2
child 5547 f4b087cbb361
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 (c) 2007 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
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    25
template <class T> inline void ParScanWeakRefClosure::do_oop_work(T* p) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    26
  assert (!oopDesc::is_null(*p), "null weak reference?");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    27
  oop obj = oopDesc::load_decode_heap_oop_not_null(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  // weak references are sometimes scanned twice; must check
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  // that to-space doesn't already contain this object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
    // we need to ensure that it is copied (see comment in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    // ParScanClosure::do_oop_work).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    klassOop objK = obj->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    markOop m = obj->mark();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    35
    oop new_obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    if (m->is_marked()) { // Contains forwarding pointer.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    37
      new_obj = ParNewGeneration::real_forwardee(obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      size_t obj_sz = obj->size_given_klass(objK->klass_part());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    40
      new_obj = ((ParNewGeneration*)_g)->copy_to_survivor_space(_par_scan_state,
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    41
                                                                obj, obj_sz, m);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    43
    oopDesc::encode_store_heap_oop_not_null(p, new_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    47
inline void ParScanWeakRefClosure::do_oop_nv(oop* p)       { ParScanWeakRefClosure::do_oop_work(p); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    48
inline void ParScanWeakRefClosure::do_oop_nv(narrowOop* p) { ParScanWeakRefClosure::do_oop_work(p); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    50
template <class T> inline void ParScanClosure::par_do_barrier(T* p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  assert(generation()->is_in_reserved(p), "expected ref in generation");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    52
  assert(!oopDesc::is_null(*p), "expected non-null object");
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    53
  oop obj = oopDesc::load_decode_heap_oop_not_null(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // If p points to a younger generation, mark the card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  if ((HeapWord*)obj < gen_boundary()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    rs()->write_ref_field_gc_par(p, obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    60
template <class T>
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    61
inline void ParScanClosure::do_oop_work(T* p,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                                        bool gc_barrier,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
                                        bool root_scan) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  assert((!Universe::heap()->is_in_reserved(p) ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
          generation()->is_in_reserved(p))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
         && (generation()->level() == 0 || gc_barrier),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
         "The gen must be right, and we must be doing the barrier "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
         "in older generations.");
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    69
  T heap_oop = oopDesc::load_heap_oop(p);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    70
  if (!oopDesc::is_null(heap_oop)) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    71
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    if ((HeapWord*)obj < _boundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
      assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
      // OK, we need to ensure that it is copied.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
      // We read the klass and mark in this order, so that we can reliably
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      // get the size of the object: if the mark we read is not a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      // forwarding pointer, then the klass is valid: the klass is only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
      // overwritten with an overflow next pointer after the object is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      // forwarded.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
      klassOop objK = obj->klass();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      markOop m = obj->mark();
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    82
      oop new_obj;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      if (m->is_marked()) { // Contains forwarding pointer.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    84
        new_obj = ParNewGeneration::real_forwardee(obj);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    85
        oopDesc::encode_store_heap_oop_not_null(p, new_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
        size_t obj_sz = obj->size_given_klass(objK->klass_part());
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    88
        new_obj = _g->copy_to_survivor_space(_par_scan_state, obj, obj_sz, m);
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    89
        oopDesc::encode_store_heap_oop_not_null(p, new_obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
        if (root_scan) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
          // This may have pushed an object.  If we have a root
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
          // category with a lot of roots, can't let the queue get too
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
          // full:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
          (void)_par_scan_state->trim_queues(10 * ParallelGCThreads);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
      if (gc_barrier) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
        // Now call parent closure
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
        par_do_barrier(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
}
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   104
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   105
inline void ParScanWithBarrierClosure::do_oop_nv(oop* p)       { ParScanClosure::do_oop_work(p, true, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   106
inline void ParScanWithBarrierClosure::do_oop_nv(narrowOop* p) { ParScanClosure::do_oop_work(p, true, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   107
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   108
inline void ParScanWithoutBarrierClosure::do_oop_nv(oop* p)       { ParScanClosure::do_oop_work(p, false, false); }
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   109
inline void ParScanWithoutBarrierClosure::do_oop_nv(narrowOop* p) { ParScanClosure::do_oop_work(p, false, false); }