src/hotspot/share/gc/shared/referenceProcessor.inline.hpp
author stuefe
Tue, 26 Nov 2019 16:21:29 +0100
branchstuefe-new-metaspace-branch
changeset 59272 54750b448264
parent 53244 9807daeb47c4
permissions -rw-r--r--
Metadatatype back to metaspace.hpp to reduce patch size
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51332
diff changeset
     2
 * Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     4
 *
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     7
 * published by the Free Software Foundation.
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     8
 *
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    13
 * accompanied this code).
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    14
 *
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    18
 *
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    21
 * questions.
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    22
 *
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    23
 */
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51332
diff changeset
    25
#ifndef SHARE_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51332
diff changeset
    26
#define SHARE_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    27
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    28
#include "gc/shared/referenceProcessor.hpp"
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 47216
diff changeset
    29
#include "oops/compressedOops.inline.hpp"
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 47216
diff changeset
    30
#include "oops/oop.hpp"
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    31
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    32
oop DiscoveredList::head() const {
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 47216
diff changeset
    33
  return UseCompressedOops ?  CompressedOops::decode(_compressed_head) :
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    34
    _oop_head;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    35
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    36
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    37
void DiscoveredList::set_head(oop o) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    38
  if (UseCompressedOops) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    39
    // Must compress the head ptr.
49592
77fb0be7d19f 8199946: Move load/store and encode/decode out of oopDesc
stefank
parents: 47216
diff changeset
    40
    _compressed_head = CompressedOops::encode(o);
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    41
  } else {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    42
    _oop_head = o;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    43
  }
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    44
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    45
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    46
bool DiscoveredList::is_empty() const {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    47
 return head() == NULL;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    48
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    49
50605
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 49967
diff changeset
    50
void DiscoveredList::clear() {
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 49967
diff changeset
    51
  set_head(NULL);
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 49967
diff changeset
    52
  set_length(0);
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 49967
diff changeset
    53
}
7f63c74f0974 8202845: Refactor reference processing for improved parallelism
tschatzl
parents: 49967
diff changeset
    54
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    55
DiscoveredListIterator::DiscoveredListIterator(DiscoveredList&    refs_list,
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    56
                                               OopClosure*        keep_alive,
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    57
                                               BoolObjectClosure* is_alive):
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    58
  _refs_list(refs_list),
49967
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49592
diff changeset
    59
  _prev_discovered_addr(refs_list.adr_head()),
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49592
diff changeset
    60
  _prev_discovered(NULL),
672ded60a082 8202021: Improve variable naming in ReferenceProcesso
tschatzl
parents: 49592
diff changeset
    61
  _current_discovered(refs_list.head()),
51332
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    62
  _current_discovered_addr(NULL),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    63
  _next_discovered(NULL),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    64
  _referent_addr(NULL),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    65
  _referent(NULL),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    66
  _keep_alive(keep_alive),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    67
  _is_alive(is_alive),
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    68
#ifdef ASSERT
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    69
  _first_seen(refs_list.head()),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    70
#endif
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    71
  _processed(0),
51332
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 50605
diff changeset
    72
  _removed(0) {
35862
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    73
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    74
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 51332
diff changeset
    75
#endif // SHARE_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP