src/hotspot/share/gc/g1/g1SATBCardTableModRefBS.hpp
author pliden
Fri, 16 Feb 2018 12:18:09 +0100
changeset 49007 82d9d5744e5f
parent 48961 120b61d50f85
child 49164 7e958a8ebcd3
permissions -rw-r--r--
8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS Reviewed-by: tschatzl, eosterlund
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     1
/*
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
     2
 * Copyright (c) 2001, 2018, Oracle and/or its affiliates. All rights reserved.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     4
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     8
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    13
 * accompanied this code).
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    14
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 3262
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: 3262
diff changeset
    21
 * questions.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    22
 *
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    23
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30565
diff changeset
    25
#ifndef SHARE_VM_GC_G1_G1SATBCARDTABLEMODREFBS_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30565
diff changeset
    26
#define SHARE_VM_GC_G1_G1SATBCARDTABLEMODREFBS_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30565
diff changeset
    28
#include "gc/g1/g1RegionToSpaceMapper.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30565
diff changeset
    29
#include "gc/shared/cardTableModRefBS.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/memRegion.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents: 28830
diff changeset
    31
#include "oops/oop.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 9179
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    34
class DirtyCardQueueSet;
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
    35
class G1SATBCardTableLoggingModRefBS;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    36
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    37
// This barrier is specialized to use a logging barrier to support
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    38
// snapshot-at-the-beginning marking.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    39
28217
57791914628c 8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS
kbarrett
parents: 27687
diff changeset
    40
class G1SATBCardTableModRefBS: public CardTableModRefBS {
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 32612
diff changeset
    41
  friend class VMStructs;
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    42
protected:
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    43
  enum G1CardValues {
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    44
    g1_young_gen = CT_MR_BS_last_reserved << 1
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    45
  };
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    46
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    47
  G1SATBCardTableModRefBS(MemRegion whole_heap, const BarrierSet::FakeRtti& fake_rtti);
28830
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 28217
diff changeset
    48
  ~G1SATBCardTableModRefBS() { }
a252e278c3d9 8064947: Clean up BarrierSet ctor/dtor
jprovino
parents: 28217
diff changeset
    49
9176
42d9d1010f38 7009266: G1: assert(obj->is_oop_or_null(true )) failed: Error
johnc
parents: 8498
diff changeset
    50
public:
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    51
  static int g1_young_card_val()   { return g1_young_gen; }
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    52
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    53
  // Add "pre_val" to a set of objects that may have been disconnected from the
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    54
  // pre-marking object graph.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    55
  static void enqueue(oop pre_val);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    56
48784
899b522ed65c 8194741: Refactor oops in constant pool from CDS to use the Access API
eosterlund
parents: 47998
diff changeset
    57
  static void enqueue_if_weak_or_archive(DecoratorSet decorators, oop value);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    58
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    59
  template <class T> void write_ref_array_pre_work(T* dst, int count);
25480
190facf4e732 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 22872
diff changeset
    60
  virtual void write_ref_array_pre(oop* dst, int count, bool dest_uninitialized);
190facf4e732 8048214: Linker error when compiling G1SATBCardTableModRefBS after include order changes
mgerdin
parents: 22872
diff changeset
    61
  virtual void write_ref_array_pre(narrowOop* dst, int count, bool dest_uninitialized);
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    62
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
    63
  template <DecoratorSet decorators, typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
    64
  void write_ref_field_pre(T* field);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
    65
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    66
/*
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    67
   Claimed and deferred bits are used together in G1 during the evacuation
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    68
   pause. These bits can have the following state transitions:
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    69
   1. The claimed bit can be put over any other card state. Except that
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    70
      the "dirty -> dirty and claimed" transition is checked for in
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    71
      G1 code and is not used.
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    72
   2. Deferred bit can be set only if the previous state of the card
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    73
      was either clean or claimed. mark_card_deferred() is wait-free.
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    74
      We do not care if the operation is be successful because if
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    75
      it does not it will only result in duplicate entry in the update
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    76
      buffer because of the "cache-miss". So it's not worth spinning.
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    77
 */
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    78
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    79
  bool is_card_claimed(size_t card_index) {
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    80
    jbyte val = _byte_map[card_index];
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    81
    return (val & (clean_card_mask_val() | claimed_card_val())) == claimed_card_val();
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    82
  }
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    83
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents: 33784
diff changeset
    84
  inline void set_card_claimed(size_t card_index);
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    85
20403
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    86
  void verify_g1_young_region(MemRegion mr) PRODUCT_RETURN;
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    87
  void g1_mark_as_young(const MemRegion& mr);
45a89fbcd8f7 8014555: G1: Memory ordering problem with Conc refinement and card marking
mgerdin
parents: 20309
diff changeset
    88
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    89
  bool mark_card_deferred(size_t card_index);
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    90
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    91
  bool is_card_deferred(size_t card_index) {
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    92
    jbyte val = _byte_map[card_index];
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    93
    return (val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val();
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    94
  }
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
    95
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
    96
  virtual bool is_in_young(oop obj) const;
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
    97
};
20309
7445302daff6 8025305: Cleanup CardTableModRefBS usage in G1
mgerdin
parents: 15482
diff changeset
    98
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
    99
template<>
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   100
struct BarrierSet::GetName<G1SATBCardTableModRefBS> {
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   101
  static const BarrierSet::Name value = BarrierSet::G1SATBCT;
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   102
};
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   103
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   104
template<>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   105
struct BarrierSet::GetType<BarrierSet::G1SATBCT> {
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   106
  typedef G1SATBCardTableModRefBS type;
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   107
};
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   108
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   109
class G1SATBCardTableLoggingModRefBSChangedListener : public G1MappingChangedListener {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   110
 private:
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   111
  G1SATBCardTableLoggingModRefBS* _card_table;
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   112
 public:
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   113
  G1SATBCardTableLoggingModRefBSChangedListener() : _card_table(NULL) { }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   114
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   115
  void set_card_table(G1SATBCardTableLoggingModRefBS* card_table) { _card_table = card_table; }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   116
27149
9246fc481aa3 8059758: Footprint regressions with JDK-8038423
tschatzl
parents: 26696
diff changeset
   117
  virtual void on_commit(uint start_idx, size_t num_regions, bool zero_filled);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   118
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   119
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   120
// Adds card-table logging to the post-barrier.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   121
// Usual invariant: all dirty cards are logged in the DirtyCardQueueSet.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   122
class G1SATBCardTableLoggingModRefBS: public G1SATBCardTableModRefBS {
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   123
  friend class G1SATBCardTableLoggingModRefBSChangedListener;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   124
 private:
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   125
  G1SATBCardTableLoggingModRefBSChangedListener _listener;
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   126
  DirtyCardQueueSet& _dcqs;
32612
79a64ccc4613 8134806: Clean up write_ref_field_work
kbarrett
parents: 30764
diff changeset
   127
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   128
 public:
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   129
  static size_t compute_size(size_t mem_region_size_in_words) {
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   130
    size_t number_of_slots = (mem_region_size_in_words / card_size_in_words);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   131
    return ReservedSpace::allocation_align_size_up(number_of_slots);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   132
  }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   133
30565
ebd5af27fe02 8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents: 29325
diff changeset
   134
  // Returns how many bytes of the heap a single byte of the Card Table corresponds to.
ebd5af27fe02 8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents: 29325
diff changeset
   135
  static size_t heap_map_factor() {
ebd5af27fe02 8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents: 29325
diff changeset
   136
    return CardTableModRefBS::card_size;
ebd5af27fe02 8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents: 29325
diff changeset
   137
  }
ebd5af27fe02 8073632: Make auxiliary data structures know their own translation factor
tschatzl
parents: 29325
diff changeset
   138
27687
3a6367d7110b 8064721: The card tables only ever need two covering regions
ehelin
parents: 27149
diff changeset
   139
  G1SATBCardTableLoggingModRefBS(MemRegion whole_heap);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   140
26160
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   141
  virtual void initialize() { }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   142
  virtual void initialize(G1RegionToSpaceMapper* mapper);
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   143
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   144
  virtual void resize_covered_region(MemRegion new_region) { ShouldNotReachHere(); }
aba6b01cb988 8038423: G1: Decommit memory within heap
tschatzl
parents: 25480
diff changeset
   145
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   146
  // NB: if you do a whole-heap invalidation, the "usual invariant" defined
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   147
  // above no longer applies.
42598
45562c0473fb 8166898: G1SATBCardTableLoggingModRefBS::invalidate() incorrect with whole_heap == true
lmesnik
parents: 35862
diff changeset
   148
  void invalidate(MemRegion mr);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   149
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   150
  void write_region(MemRegion mr)         { invalidate(mr); }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   151
  void write_ref_array_work(MemRegion mr) { invalidate(mr); }
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   152
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   153
  template <DecoratorSet decorators, typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   154
  void write_ref_field_post(T* field, oop new_val);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   155
  void write_ref_field_post_slow(volatile jbyte* byte);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   156
49007
82d9d5744e5f 8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS
pliden
parents: 48961
diff changeset
   157
  virtual void on_thread_attach(JavaThread* thread);
82d9d5744e5f 8197994: Move JavaThread::initialize_queues() logic to G1SATBCardTableLoggingModRefBS
pliden
parents: 48961
diff changeset
   158
  virtual void on_thread_detach(JavaThread* thread);
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   159
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   160
  virtual bool card_mark_must_follow_store() const {
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   161
    return true;
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   162
  }
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48784
diff changeset
   163
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   164
  // Callbacks for runtime accesses.
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   165
  template <DecoratorSet decorators, typename BarrierSetT = G1SATBCardTableLoggingModRefBS>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   166
  class AccessBarrier: public ModRefBarrierSet::AccessBarrier<decorators, BarrierSetT> {
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   167
    typedef ModRefBarrierSet::AccessBarrier<decorators, BarrierSetT> ModRef;
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   168
    typedef BarrierSet::AccessBarrier<decorators, BarrierSetT> Raw;
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   169
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   170
  public:
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   171
    // Needed for loads on non-heap weak references
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   172
    template <typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   173
    static oop oop_load_not_in_heap(T* addr);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   174
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   175
    // Needed for non-heap stores
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   176
    template <typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   177
    static void oop_store_not_in_heap(T* addr, oop new_value);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   178
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   179
    // Needed for weak references
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   180
    static oop oop_load_in_heap_at(oop base, ptrdiff_t offset);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   181
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   182
    // Defensive: will catch weak oops at addresses in heap
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   183
    template <typename T>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   184
    static oop oop_load_in_heap(T* addr);
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   185
  };
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   186
};
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
   187
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   188
template<>
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   189
struct BarrierSet::GetName<G1SATBCardTableLoggingModRefBS> {
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   190
  static const BarrierSet::Name value = BarrierSet::G1SATBCTLogging;
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   191
};
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 29081
diff changeset
   192
47998
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   193
template<>
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   194
struct BarrierSet::GetType<BarrierSet::G1SATBCTLogging> {
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   195
  typedef G1SATBCardTableLoggingModRefBS type;
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   196
};
fb0275c320a0 8189871: Refactor GC barriers to use declarative semantics
eosterlund
parents: 47794
diff changeset
   197
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30565
diff changeset
   198
#endif // SHARE_VM_GC_G1_G1SATBCARDTABLEMODREFBS_HPP