hotspot/src/share/vm/memory/modRefBarrierSet.hpp
author ysr
Thu, 05 Jun 2008 15:57:56 -0700
changeset 1374 4c24294029a9
parent 360 21d113ecbf6a
child 1388 3677f5f3d66b
permissions -rw-r--r--
6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
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 2000-2002 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
// This kind of "BarrierSet" allows a "CollectedHeap" to detect and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// enumerate ref fields that have been modified (since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// enumeration), using a card table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class ModRefBarrierSet: public BarrierSet {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
public:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    34
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    35
  ModRefBarrierSet() { _kind = BarrierSet::ModRef; }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    36
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    37
  bool is_a(BarrierSet::Name bsn) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    38
    return bsn == BarrierSet::ModRef;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    39
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    40
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // Barriers only on ref writes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  bool has_read_ref_barrier() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  bool has_read_prim_barrier() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  bool has_write_ref_barrier() { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  bool has_write_prim_barrier() { return false; }
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
  bool read_ref_needs_barrier(void* field) { return false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  bool read_prim_needs_barrier(HeapWord* field, size_t bytes) { return false; }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    49
  virtual bool write_ref_needs_barrier(void* field, oop new_val) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  bool write_prim_needs_barrier(HeapWord* field, size_t bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                                juint val1, juint val2) { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  void write_prim_field(oop obj, size_t offset, size_t bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
                        juint val1, juint val2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    56
  void read_ref_field(void* field) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void read_prim_field(HeapWord* field, size_t bytes) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
protected:
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    59
  virtual void write_ref_field_work(void* field, oop new_val) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  void write_prim_field(HeapWord* field, size_t bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
                        juint val1, juint val2) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  bool has_read_ref_array_opt() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  bool has_read_prim_array_opt() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  bool has_write_prim_array_opt() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  bool has_read_region_opt() { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // These operations should assert false unless the correponding operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // above returns true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  void read_ref_array(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    assert(false, "can't call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void read_prim_array(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    assert(false, "can't call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  void write_prim_array(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    assert(false, "can't call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  void read_region(MemRegion mr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    assert(false, "can't call");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Invoke "cl->do_oop" on (the address of) every possibly-modifed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // reference field in objects in "sp".  If "clear" is "true", the oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // are no longer considered possibly modified after application of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // closure.  If' "before_save_marks" is true, oops in objects allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // after the last call to "save_marks" on "sp" will not be considered.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  virtual void mod_oop_in_space_iterate(Space* sp, OopClosure* cl,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                                        bool clear = false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                                        bool before_save_marks = false) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    95
  // Causes all refs in "mr" to be assumed to be modified.  If "whole_heap"
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    96
  // is true, the caller asserts that the entire heap is being invalidated,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    97
  // which may admit an optimized implementation for some barriers.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    98
  virtual void invalidate(MemRegion mr, bool whole_heap = false) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  // The caller guarantees that "mr" contains no references.  (Perhaps it's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // objects have been moved elsewhere.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  virtual void clear(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // Pass along the argument to the superclass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  ModRefBarrierSet(int max_covered_regions) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    BarrierSet(max_covered_regions) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Verifies that the given region contains no modified references.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  virtual void verify_clean_region(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
};