hotspot/src/share/vm/memory/barrierSet.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 360 21d113ecbf6a
permissions -rw-r--r--
Initial load
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 class provides the interface between a barrier implementation and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// the rest of the system.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class BarrierSet: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  enum Name {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    ModRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    CardTableModRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    CardTableExtension,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    Other,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    Uninit
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  int _max_covered_regions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  Name _kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // To get around prohibition on RTTI.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  virtual BarrierSet::Name kind() { return _kind; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  virtual bool is_a(BarrierSet::Name bsn) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // These operations indicate what kind of barriers the BarrierSet has.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  virtual bool has_read_ref_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  virtual bool has_read_prim_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  virtual bool has_write_ref_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  virtual bool has_write_prim_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // These functions indicate whether a particular access of the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // kinds requires a barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  virtual bool read_ref_needs_barrier(oop* field) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  virtual bool read_prim_needs_barrier(HeapWord* field, size_t bytes) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  virtual bool write_ref_needs_barrier(oop* field, oop new_val) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  virtual bool write_prim_needs_barrier(HeapWord* field, size_t bytes, juint val1, juint val2) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // The first four operations provide a direct implementation of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // barrier set.  An interpreter loop, for example, could call these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // directly, as appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // Invoke the barrier, if any, necessary when reading the given ref field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  virtual void read_ref_field(oop* field) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Invoke the barrier, if any, necessary when reading the given primitive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // "field" of "bytes" bytes in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  virtual void read_prim_field(HeapWord* field, size_t bytes) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Invoke the barrier, if any, necessary when writing "new_val" into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // ref field at "offset" in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // (For efficiency reasons, this operation is specialized for certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  // barrier types.  Semantically, it should be thought of as a call to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // virtual "_work" function below, which must implement the barrier.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  inline void write_ref_field(oop* field, oop new_val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  virtual void write_ref_field_work(oop* field, oop new_val) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Invoke the barrier, if any, necessary when writing the "bytes"-byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // value(s) "val1" (and "val2") into the primitive "field".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  virtual void write_prim_field(HeapWord* field, size_t bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                juint val1, juint val2) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Operations on arrays, or general regions (e.g., for "clone") may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // optimized by some barriers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // The first six operations tell whether such an optimization exists for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // the particular barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  virtual bool has_read_ref_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  virtual bool has_read_prim_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual bool has_write_ref_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  virtual bool has_write_prim_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual bool has_read_region_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  virtual bool has_write_region_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // These operations should assert false unless the correponding operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // above returns true.  Otherwise, they should perform an appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // barrier for an array whose elements are all in the given memory region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  virtual void read_ref_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  virtual void read_prim_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  inline void write_ref_array(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  virtual void write_ref_array_work(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  virtual void write_prim_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  virtual void read_region(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  // (For efficiency reasons, this operation is specialized for certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // barrier types.  Semantically, it should be thought of as a call to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // virtual "_work" function below, which must implement the barrier.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  inline void write_region(MemRegion mr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  virtual void write_region_work(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // The remaining sets of operations are called by compilers or other code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // generators to insert barriers into generated code.  There may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // several such code generators; the signatures of these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // barrier-generating functions may differ from generator to generator.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // There will be a set of four function signatures for each code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // generator, which accomplish the generation of barriers of the four
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // kinds listed above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
#ifdef TBD
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // Generates code to invoke the barrier, if any, necessary when reading
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // the ref field at "offset" in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual void gen_read_ref_field() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // Generates code to invoke the barrier, if any, necessary when reading
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // the primitive field of "bytes" bytes at offset" in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  virtual void gen_read_prim_field() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Generates code to invoke the barrier, if any, necessary when writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // "new_val" into the ref field at "offset" in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  virtual void gen_write_ref_field() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Generates code to invoke the barrier, if any, necessary when writing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  // the "bytes"-byte value "new_val" into the primitive field at "offset"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  virtual void gen_write_prim_field() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Some barrier sets create tables whose elements correspond to parts of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // the heap; the CardTableModRefBS is an example.  Such barrier sets will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // normally reserve space for such tables, and commit parts of the table
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // "covering" parts of the heap that are committed.  The constructor is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // passed the maximum number of independently committable subregions to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // be covered, and the "resize_covoered_region" function allows the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // sub-parts of the heap to inform the barrier set of changes of their
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // sizes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  BarrierSet(int max_covered_regions) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _max_covered_regions(max_covered_regions) {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Inform the BarrierSet that the the covered heap region that starts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // with "base" has been changed to have the given size (possibly from 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // for initialization.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  virtual void resize_covered_region(MemRegion new_region) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // If the barrier set imposes any alignment restrictions on boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // within the heap, this function tells whether they are met.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual bool is_aligned(HeapWord* addr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
};