hotspot/src/share/vm/gc_implementation/g1/g1OopClosures.inline.hpp
author stefank
Mon, 07 Jul 2014 12:37:11 +0200
changeset 25491 70fb742e40aa
parent 25490 59f226da8d81
child 25492 d27050bdfb04
permissions -rw-r--r--
8049420: Backout 8048248 to correct attribution Reviewed-by: ehelin, brutisso
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
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24106
diff changeset
     2
 * Copyright (c) 2001, 2014, 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: 4902
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4902
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: 4902
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
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_INLINE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    27
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
    28
#include "gc_implementation/g1/concurrentMark.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    29
#include "gc_implementation/g1/g1CollectedHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    30
#include "gc_implementation/g1/g1OopClosures.hpp"
25482
b69656f26643 8035400: Move G1ParScanThreadState into its own files
tschatzl
parents: 24487
diff changeset
    31
#include "gc_implementation/g1/g1ParScanThreadState.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    32
#include "gc_implementation/g1/g1RemSet.hpp"
22807
1cf02ef734e2 8016586: PPC64 (part 3): basic changes for PPC64
goetz
parents: 14073
diff changeset
    33
#include "gc_implementation/g1/g1RemSet.inline.hpp"
13333
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
    34
#include "gc_implementation/g1/heapRegionRemSet.hpp"
24487
71ff0bd674eb 8042737: Introduce umbrella header prefetch.inline.hpp
goetz
parents: 24424
diff changeset
    35
#include "runtime/prefetch.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
    36
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    37
/*
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    38
 * This really ought to be an inline function, but apparently the C++
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    39
 * compiler sometimes sees fit to ignore inline declarations.  Sigh.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    40
 */
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    41
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    42
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    43
inline void FilterIntoCSClosure::do_oop_nv(T* p) {
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    44
  T heap_oop = oopDesc::load_heap_oop(p);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    45
  if (!oopDesc::is_null(heap_oop) &&
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    46
      _g1->obj_in_cs(oopDesc::decode_heap_oop_not_null(heap_oop))) {
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    47
    _oc->do_oop(p);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    48
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    49
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    50
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    51
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    52
inline void FilterOutOfRegionClosure::do_oop_nv(T* p) {
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    53
  T heap_oop = oopDesc::load_heap_oop(p);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    54
  if (!oopDesc::is_null(heap_oop)) {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    55
    HeapWord* obj_hw = (HeapWord*)oopDesc::decode_heap_oop_not_null(heap_oop);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    56
    if (obj_hw < _r_bottom || obj_hw >= _r_end) {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    57
      _oc->do_oop(p);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    58
    }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    59
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    60
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    61
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    62
// This closure is applied to the fields of the objects that have just been copied.
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    63
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    64
inline void G1ParScanClosure::do_oop_nv(T* p) {
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    65
  T heap_oop = oopDesc::load_heap_oop(p);
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    66
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    67
  if (!oopDesc::is_null(heap_oop)) {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    68
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    69
    if (_g1->in_cset_fast_test(obj)) {
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    70
      // We're not going to even bother checking whether the object is
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    71
      // already forwarded or not, as this usually causes an immediate
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    72
      // stall. We'll try to prefetch the object (for write, given that
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    73
      // we might need to install the forwarding reference) and we'll
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    74
      // get back to it when pop it from the queue
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    75
      Prefetch::write(obj->mark_addr(), 0);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    76
      Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    77
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    78
      // slightly paranoid test; I'm trying to catch potential
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    79
      // problems before we go into push_on_queue to know where the
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    80
      // problem is coming from
11202
6be05533238b 7114095: G1: assert(obj == oopDesc::load_decode_heap_oop(p)) failed: p should still be pointing to obj
johnc
parents: 9994
diff changeset
    81
      assert((obj == oopDesc::load_decode_heap_oop(p)) ||
6be05533238b 7114095: G1: assert(obj == oopDesc::load_decode_heap_oop(p)) failed: p should still be pointing to obj
johnc
parents: 9994
diff changeset
    82
             (obj->is_forwarded() &&
6be05533238b 7114095: G1: assert(obj == oopDesc::load_decode_heap_oop(p)) failed: p should still be pointing to obj
johnc
parents: 9994
diff changeset
    83
                 obj->forwardee() == oopDesc::load_decode_heap_oop(p)),
6be05533238b 7114095: G1: assert(obj == oopDesc::load_decode_heap_oop(p)) failed: p should still be pointing to obj
johnc
parents: 9994
diff changeset
    84
             "p should still be pointing to obj or to its forwardee");
6be05533238b 7114095: G1: assert(obj == oopDesc::load_decode_heap_oop(p)) failed: p should still be pointing to obj
johnc
parents: 9994
diff changeset
    85
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    86
      _par_scan_state->push_on_queue(p);
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    87
    } else {
22901
3b4e9802e94f 8027559: Decrease code size and templatizing in G1ParCopyClosure::do_oop_work
tschatzl
parents: 22551
diff changeset
    88
      _par_scan_state->update_rs(_from, p, _worker_id);
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 1374
diff changeset
    89
    }
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    90
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents:
diff changeset
    91
}
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    92
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    93
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
    94
inline void G1ParPushHeapRSClosure::do_oop_nv(T* p) {
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    95
  T heap_oop = oopDesc::load_heap_oop(p);
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    96
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    97
  if (!oopDesc::is_null(heap_oop)) {
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    98
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
    99
    if (_g1->in_cset_fast_test(obj)) {
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   100
      Prefetch::write(obj->mark_addr(), 0);
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   101
      Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
6247
00e5cc407d03 6814437: G1: remove the _new_refs array
johnc
parents: 5547
diff changeset
   102
00e5cc407d03 6814437: G1: remove the _new_refs array
johnc
parents: 5547
diff changeset
   103
      // Place on the references queue
4902
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   104
      _par_scan_state->push_on_queue(p);
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   105
    }
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   106
  }
991aaddb5165 6923991: G1: improve scalability of RSet scanning
iveresov
parents: 3262
diff changeset
   107
}
6247
00e5cc407d03 6814437: G1: remove the _new_refs array
johnc
parents: 5547
diff changeset
   108
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   109
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   110
inline void G1CMOopClosure::do_oop_nv(T* p) {
25491
70fb742e40aa 8049420: Backout 8048248 to correct attribution
stefank
parents: 25490
diff changeset
   111
  assert(_g1h->is_in_g1_reserved((HeapWord*) p), "invariant");
70fb742e40aa 8049420: Backout 8048248 to correct attribution
stefank
parents: 25490
diff changeset
   112
  assert(!_g1h->is_on_master_free_list(
70fb742e40aa 8049420: Backout 8048248 to correct attribution
stefank
parents: 25490
diff changeset
   113
                    _g1h->heap_region_containing((HeapWord*) p)), "invariant");
70fb742e40aa 8049420: Backout 8048248 to correct attribution
stefank
parents: 25490
diff changeset
   114
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   115
  oop obj = oopDesc::load_decode_heap_oop(p);
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   116
  if (_cm->verbose_high()) {
14073
6012178c0c19 7127708: G1: change task num types from int to uint in concurrent mark
johnc
parents: 13336
diff changeset
   117
    gclog_or_tty->print_cr("[%u] we're looking at location "
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   118
                           "*"PTR_FORMAT" = "PTR_FORMAT,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 24106
diff changeset
   119
                           _task->worker_id(), p2i(p), p2i((void*) obj));
9994
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   120
  }
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   121
  _task->deal_with_reference(obj);
efb74fdbd46e 7046558: G1: concurrent marking optimizations
tonyp
parents: 9988
diff changeset
   122
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
   123
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   124
template <class T>
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   125
inline void G1RootRegionScanClosure::do_oop_nv(T* p) {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   126
  T heap_oop = oopDesc::load_heap_oop(p);
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   127
  if (!oopDesc::is_null(heap_oop)) {
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   128
    oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   129
    HeapRegion* hr = _g1h->heap_region_containing((HeapWord*) obj);
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   130
    _cm->grayRoot(obj, obj->size(), _worker_id, hr);
11584
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   131
  }
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   132
}
e1df4d08a1f4 7127706: G1: re-enable survivors during the initial-mark pause
tonyp
parents: 11202
diff changeset
   133
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   134
template <class T>
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   135
inline void G1Mux2Closure::do_oop_nv(T* p) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   136
  // Apply first closure; then apply the second.
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   137
  _c1->do_oop(p);
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   138
  _c2->do_oop(p);
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   139
}
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   140
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   141
template <class T>
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   142
inline void G1TriggerClosure::do_oop_nv(T* p) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   143
  // Record that this closure was actually applied (triggered).
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   144
  _triggered = true;
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   145
}
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   146
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   147
template <class T>
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   148
inline void G1InvokeIfNotTriggeredClosure::do_oop_nv(T* p) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   149
  if (!_trigger_cl->triggered()) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   150
    _oop_cl->do_oop(p);
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   151
  }
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   152
}
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   153
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   154
template <class T>
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   155
inline void G1UpdateRSOrPushRefOopClosure::do_oop_nv(T* p) {
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   156
  oop obj = oopDesc::load_decode_heap_oop(p);
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   157
  if (obj == NULL) {
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   158
    return;
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   159
  }
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   160
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   161
#ifdef ASSERT
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   162
  // can't do because of races
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   163
  // assert(obj == NULL || obj->is_oop(), "expected an oop");
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   164
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   165
  // Do the safe subset of is_oop
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   166
#ifdef CHECK_UNHANDLED_OOPS
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   167
  oopDesc* o = obj.obj();
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   168
#else
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   169
  oopDesc* o = obj;
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   170
#endif // CHECK_UNHANDLED_OOPS
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   171
  assert((intptr_t)o % MinObjAlignmentInBytes == 0, "not oop aligned");
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   172
  assert(Universe::heap()->is_in_reserved(obj), "must be in heap");
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   173
#endif // ASSERT
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   174
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   175
  assert(_from != NULL, "from region must be non-NULL");
13333
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   176
  assert(_from->is_in_reserved(p), "p is not in from");
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   177
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   178
  HeapRegion* to = _g1->heap_region_containing(obj);
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   179
  if (_from == to) {
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   180
    // Normally this closure should only be called with cross-region references.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   181
    // But since Java threads are manipulating the references concurrently and we
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   182
    // reload the values things may have changed.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   183
    return;
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   184
  }
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   185
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   186
  // The _record_refs_into_cset flag is true during the RSet
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   187
  // updating part of an evacuation pause. It is false at all
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   188
  // other times:
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   189
  //  * rebuilding the remembered sets after a full GC
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   190
  //  * during concurrent refinement.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   191
  //  * updating the remembered sets of regions in the collection
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   192
  //    set in the event of an evacuation failure (when deferred
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   193
  //    updates are enabled).
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   194
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   195
  if (_record_refs_into_cset && to->in_collection_set()) {
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   196
    // We are recording references that point into the collection
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   197
    // set and this particular reference does exactly that...
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   198
    // If the referenced object has already been forwarded
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   199
    // to itself, we are handling an evacuation failure and
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   200
    // we have already visited/tried to copy this object
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   201
    // there is no need to retry.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   202
    if (!self_forwarded(obj)) {
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   203
      assert(_push_ref_cl != NULL, "should not be null");
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   204
      // Push the reference in the refs queue of the G1ParScanThreadState
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   205
      // instance for this worker thread.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   206
      _push_ref_cl->do_oop(p);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   207
    }
13333
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   208
24106
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   209
    // Deferred updates to the CSet are either discarded (in the normal case),
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   210
    // or processed (if an evacuation failure occurs) at the end
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   211
    // of the collection.
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   212
    // See G1RemSet::cleanup_after_oops_into_collection_set_do().
dae9277bdf2a 8040722: G1: Clean up usages of heap_region_containing
brutisso
parents: 22905
diff changeset
   213
  } else {
13333
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   214
    // We either don't care about pushing references that point into the
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   215
    // collection set (i.e. we're not during an evacuation pause) _or_
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   216
    // the reference doesn't point into the collection set. Either way
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   217
    // we add the reference directly to the RSet of the region containing
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   218
    // the referenced object.
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   219
    assert(to->rem_set() != NULL, "Need per-region 'into' remsets.");
f51af0093d29 7173712: G1: Duplicated code in G1UpdateRSOrPushRefOopClosure::do_oop_nv()
johnc
parents: 11586
diff changeset
   220
    to->rem_set()->add_reference(p, _worker_i);
11586
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   221
  }
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   222
}
ccc217c177ee 7133038: G1: Some small profile based optimizations
johnc
parents: 11584
diff changeset
   223
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6247
diff changeset
   224
#endif // SHARE_VM_GC_IMPLEMENTATION_G1_G1OOPCLOSURES_INLINE_HPP