src/hotspot/share/gc/shared/referenceProcessor.inline.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 35862 hotspot/src/share/vm/gc/shared/referenceProcessor.inline.hpp@411842d0c882
child 49592 77fb0be7d19f
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
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
/*
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
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
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    26
#define SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP
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"
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    29
#include "oops/oop.inline.hpp"
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    30
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    31
oop DiscoveredList::head() const {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    32
  return UseCompressedOops ?  oopDesc::decode_heap_oop(_compressed_head) :
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    33
    _oop_head;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    34
}
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
void DiscoveredList::set_head(oop o) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    37
  if (UseCompressedOops) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    38
    // Must compress the head ptr.
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    39
    _compressed_head = oopDesc::encode_heap_oop(o);
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    40
  } else {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    41
    _oop_head = o;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    42
  }
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
bool DiscoveredList::is_empty() const {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    46
 return head() == NULL;
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    47
}
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
DiscoveredListIterator::DiscoveredListIterator(DiscoveredList&    refs_list,
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    50
                                               OopClosure*        keep_alive,
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    51
                                               BoolObjectClosure* is_alive):
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    52
  _refs_list(refs_list),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    53
  _prev_next(refs_list.adr_head()),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    54
  _prev(NULL),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    55
  _ref(refs_list.head()),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    56
#ifdef ASSERT
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    57
  _first_seen(refs_list.head()),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    58
#endif
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    59
#ifndef PRODUCT
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    60
  _processed(0),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    61
  _removed(0),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    62
#endif
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    63
  _next(NULL),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    64
  _keep_alive(keep_alive),
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    65
  _is_alive(is_alive) {
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    66
}
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    67
411842d0c882 8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
diff changeset
    68
#endif // SHARE_VM_GC_SHARED_REFERENCEPROCESSOR_INLINE_HPP