src/hotspot/share/gc/shared/c1/modRefBarrierSetC1.hpp
author eosterlund
Tue, 16 Oct 2018 13:18:22 +0200
changeset 52142 ca0c25e01c5b
parent 49906 4bb58f644e4e
permissions -rw-r--r--
8210498: nmethod entry barriers Reviewed-by: kvn, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49906
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     1
/*
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     4
 *
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     7
 * published by the Free Software Foundation.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     8
 *
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    13
 * accompanied this code).
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    14
 *
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    18
 *
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    21
 * questions.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    22
 *
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    23
 */
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    24
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    25
#ifndef SHARE_GC_SHARED_C1_MODREFBARRIERSETC1_HPP
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    26
#define SHARE_GC_SHARED_C1_MODREFBARRIERSETC1_HPP
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    27
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    28
#include "gc/shared/c1/barrierSetC1.hpp"
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    29
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    30
// The ModRefBarrierSetC1 filters away accesses on BasicTypes other
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    31
// than T_OBJECT/T_ARRAY (oops). The oop accesses call one of the protected
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    32
// accesses, which are overridden in the concrete BarrierSetAssembler.
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    33
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    34
class ModRefBarrierSetC1 : public BarrierSetC1 {
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    35
protected:
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    36
  virtual void pre_barrier(LIRAccess& access, LIR_Opr addr_opr,
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    37
                           LIR_Opr pre_val, CodeEmitInfo* info) {}
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    38
  virtual void post_barrier(LIRAccess& access, LIR_OprDesc* addr,
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    39
                            LIR_OprDesc* new_val) {}
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    40
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    41
  virtual LIR_Opr resolve_address(LIRAccess& access, bool resolve_in_register);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    42
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    43
  virtual void store_at_resolved(LIRAccess& access, LIR_Opr value);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    44
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    45
  virtual LIR_Opr atomic_cmpxchg_at_resolved(LIRAccess& access, LIRItem& cmp_value, LIRItem& new_value);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    46
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    47
  virtual LIR_Opr atomic_xchg_at_resolved(LIRAccess& access, LIRItem& value);
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    48
};
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    49
4bb58f644e4e 8201543: Modularize C1 GC barriers
eosterlund
parents:
diff changeset
    50
#endif // SHARE_GC_SHARED_C1_MODREFBARRIERSETC1_HPP