hotspot/src/share/vm/memory/barrierSet.hpp
author stefank
Fri, 13 Feb 2015 14:37:35 +0100
changeset 29081 c61eb4914428
parent 28837 fda2ab610119
child 29325 0e86e64c66e5
permissions -rw-r--r--
8072911: Remove includes of oop.inline.hpp from .hpp files Reviewed-by: brutisso, coleenp, jwilhelm, simonis, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27687
diff changeset
     2
 * Copyright (c) 2000, 2015, 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: 4886
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4886
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: 4886
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_BARRIERSET_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_MEMORY_BARRIERSET_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/memRegion.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oopsHierarchy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// This class provides the interface between a barrier implementation and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// the rest of the system.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 12268
diff changeset
    34
class BarrierSet: public CHeapObj<mtGC> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  enum Name {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    ModRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    CardTableModRef,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    CardTableExtension,
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    41
    G1SATBCT,
28837
fda2ab610119 8071805: BarrierSet::Other is not used and should be removed.
jprovino
parents: 28830
diff changeset
    42
    G1SATBCTLogging
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
    45
  enum Flags {
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
    46
    None                = 0,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
    47
    TargetUninitialized = 1
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
    48
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
protected:
27687
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    50
  // Some barrier sets create tables whose elements correspond to parts of
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    51
  // the heap; the CardTableModRefBS is an example.  Such barrier sets will
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    52
  // normally reserve space for such tables, and commit parts of the table
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    53
  // "covering" parts of the heap that are committed. At most one covered
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    54
  // region per generation is needed.
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 22876
diff changeset
    55
  static const int _max_covered_regions = 2;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  Name _kind;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27687
diff changeset
    58
  BarrierSet(Name kind) : _kind(kind) { }
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27687
diff changeset
    59
  ~BarrierSet() { }
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 27687
diff changeset
    60
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // To get around prohibition on RTTI.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    64
  BarrierSet::Name kind() { return _kind; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  virtual bool is_a(BarrierSet::Name bsn) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // These operations indicate what kind of barriers the BarrierSet has.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  virtual bool has_read_ref_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  virtual bool has_read_prim_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  virtual bool has_write_ref_barrier() = 0;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    71
  virtual bool has_write_ref_pre_barrier() = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  virtual bool has_write_prim_barrier() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // These functions indicate whether a particular access of the given
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // kinds requires a barrier.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    76
  virtual bool read_ref_needs_barrier(void* field) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  virtual bool read_prim_needs_barrier(HeapWord* field, size_t bytes) = 0;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    78
  virtual bool write_prim_needs_barrier(HeapWord* field, size_t bytes,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    79
                                        juint val1, juint val2) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // The first four operations provide a direct implementation of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // barrier set.  An interpreter loop, for example, could call these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // directly, as appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Invoke the barrier, if any, necessary when reading the given ref field.
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
    86
  virtual void read_ref_field(void* field) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Invoke the barrier, if any, necessary when reading the given primitive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // "field" of "bytes" bytes in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  virtual void read_prim_field(HeapWord* field, size_t bytes) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  // Invoke the barrier, if any, necessary when writing "new_val" into the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  // ref field at "offset" in "obj".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // (For efficiency reasons, this operation is specialized for certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // barrier types.  Semantically, it should be thought of as a call to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // virtual "_work" function below, which must implement the barrier.)
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
    97
  // First the pre-write versions...
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
    98
  template <class T> inline void write_ref_field_pre(T* field, oop new_val);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
    99
private:
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
   100
  // Keep this private so as to catch violations at build time.
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
   101
  virtual void write_ref_field_pre_work(     void* field, oop new_val) { guarantee(false, "Not needed"); };
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   102
protected:
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
   103
  virtual void write_ref_field_pre_work(      oop* field, oop new_val) {};
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1388
diff changeset
   104
  virtual void write_ref_field_pre_work(narrowOop* field, oop new_val) {};
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   105
public:
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   106
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   107
  // ...then the post-write version.
22859
7b88983393b7 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 13728
diff changeset
   108
  inline void write_ref_field(void* field, oop new_val, bool release = false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
protected:
22859
7b88983393b7 8029396: PPC64 (part 212): Several memory ordering fixes in C-code.
goetz
parents: 13728
diff changeset
   110
  virtual void write_ref_field_work(void* field, oop new_val, bool release = false) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // Invoke the barrier, if any, necessary when writing the "bytes"-byte
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  // value(s) "val1" (and "val2") into the primitive "field".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  virtual void write_prim_field(HeapWord* field, size_t bytes,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                                juint val1, juint val2) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // Operations on arrays, or general regions (e.g., for "clone") may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // optimized by some barriers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // The first six operations tell whether such an optimization exists for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  // the particular barrier.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual bool has_read_ref_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  virtual bool has_read_prim_array_opt() = 0;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   125
  virtual bool has_write_ref_array_pre_opt() { return true; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  virtual bool has_write_ref_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  virtual bool has_write_prim_array_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  virtual bool has_read_region_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  virtual bool has_write_region_opt() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 13728
diff changeset
   132
  // These operations should assert false unless the corresponding operation
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // above returns true.  Otherwise, they should perform an appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // barrier for an array whose elements are all in the given memory region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  virtual void read_ref_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  virtual void read_prim_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   138
  // Below length is the # array elements being written
8498
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
   139
  virtual void write_ref_array_pre(oop* dst, int length,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
   140
                                   bool dest_uninitialized = false) {}
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
   141
  virtual void write_ref_array_pre(narrowOop* dst, int length,
6398004126b9 6627983: G1: Bad oop deference during marking
iveresov
parents: 7397
diff changeset
   142
                                   bool dest_uninitialized = false) {}
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   143
  // Below count is the # array elements being written, starting
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   144
  // at the address "start", which may not necessarily be HeapWord-aligned
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   145
  inline void write_ref_array(HeapWord* start, size_t count);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   146
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   147
  // Static versions, suitable for calling from generated code;
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   148
  // count is # array elements being written, starting with "start",
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3262
diff changeset
   149
  // which may not necessarily be HeapWord-aligned.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   150
  static void static_write_ref_array_pre(HeapWord* start, size_t count);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   151
  static void static_write_ref_array_post(HeapWord* start, size_t count);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   152
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  virtual void write_ref_array_work(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  virtual void write_prim_array(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  virtual void read_region(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // (For efficiency reasons, this operation is specialized for certain
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // barrier types.  Semantically, it should be thought of as a call to the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // virtual "_work" function below, which must implement the barrier.)
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28837
diff changeset
   163
  void write_region(MemRegion mr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  virtual void write_region_work(MemRegion mr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // Inform the BarrierSet that the the covered heap region that starts
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // with "base" has been changed to have the given size (possibly from 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // for initialization.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual void resize_covered_region(MemRegion new_region) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // If the barrier set imposes any alignment restrictions on boundaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // within the heap, this function tells whether they are met.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual bool is_aligned(HeapWord* addr) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
12268
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 8498
diff changeset
   176
  // Print a description of the memory for the barrier set
f7897aacb9ce 7157141: crash in 64 bit with corrupted oops
never
parents: 8498
diff changeset
   177
  virtual void print_on(outputStream* st) const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   179
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   180
#endif // SHARE_VM_MEMORY_BARRIERSET_HPP