src/hotspot/share/gc/shared/cardTableModRefBS.inline.hpp
author eosterlund
Mon, 09 Oct 2017 14:39:59 +0200
changeset 47609 a1f68e415b48
parent 47216 71c04702a3d5
child 47998 fb0275c320a0
permissions -rw-r--r--
8188813: Generalize OrderAccess to use templates Reviewed-by: dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     1
/*
47609
a1f68e415b48 8188813: Generalize OrderAccess to use templates
eosterlund
parents: 47216
diff changeset
     2
 * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     4
 *
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     8
 *
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    13
 * accompanied this code).
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    14
 *
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    18
 *
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    21
 * questions.
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    22
 *
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    23
 */
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    26
#define SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    27
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    28
#include "gc/shared/cardTableModRefBS.hpp"
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    29
#include "oops/oopsHierarchy.hpp"
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    30
#include "runtime/orderAccess.inline.hpp"
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    31
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    32
template <class T> inline void CardTableModRefBS::inline_write_ref_field(T* field, oop newVal, bool release) {
47609
a1f68e415b48 8188813: Generalize OrderAccess to use templates
eosterlund
parents: 47216
diff changeset
    33
  volatile jbyte* byte = byte_for((void*)field);
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    34
  if (release) {
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    35
    // Perform a releasing store if requested.
47609
a1f68e415b48 8188813: Generalize OrderAccess to use templates
eosterlund
parents: 47216
diff changeset
    36
    OrderAccess::release_store(byte, jbyte(dirty_card));
29081
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    37
  } else {
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    38
    *byte = dirty_card;
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    39
  }
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    40
}
c61eb4914428 8072911: Remove includes of oop.inline.hpp from .hpp files
stefank
parents:
diff changeset
    41
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29081
diff changeset
    42
#endif // SHARE_VM_GC_SHARED_CARDTABLEMODREFBS_INLINE_HPP