src/hotspot/share/gc/shared/specialized_oop_closures.hpp
author stefank
Fri, 04 May 2018 11:41:35 +0200
changeset 49982 9042ffe5b7fe
parent 49735 b3c09ab95c1a
child 50034 01a88f825a84
permissions -rw-r--r--
8200729: Conditional compilation of GCs Reviewed-by: ehelin, coleenp, kvn, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46415
7d5a286cdf89 8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
sjohanss
parents: 35492
diff changeset
     2
 * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1374
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1374
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: 1374
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
    25
#ifndef SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
    26
#define SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    28
#include "utilities/macros.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    29
#if INCLUDE_CMSGC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    30
#include "gc/cms/cms_specialized_oop_closures.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    31
#endif
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    32
#if INCLUDE_G1GC
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    33
#include "gc/g1/g1_specialized_oop_closures.hpp"
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    34
#endif
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    35
#if INCLUDE_SERIALGC
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    36
#include "gc/serial/serial_specialized_oop_closures.hpp"
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    37
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// The following OopClosure types get specialized versions of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// "oop_oop_iterate" that invoke the closures' do_oop methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// non-virtually, using a mechanism defined in this file.  Extend these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// macros in the obvious way to add specializations for new closures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// Forward declarations.
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    45
class ExtendedOopClosure;
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    46
class NoHeaderExtendedOopClosure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class OopsInGenClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// want specialized bodies of "oop_oop_iterate".  The arguments to "f" are:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
//   "f(closureType, non_virtual)"
29687
281ffb2398cd 8075242: Remove SpecializationStats
stefank
parents: 25351
diff changeset
    52
// where "closureType" is the name of the particular subclass of ExtendedOopClosure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// and "non_virtual" will be the string "_nv" if the closure type should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// have its "do_oop" method invoked non-virtually, or else the
29687
281ffb2398cd 8075242: Remove SpecializationStats
stefank
parents: 25351
diff changeset
    55
// string "_v".  ("ExtendedOopClosure" itself will be the only class in the latter
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// category.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// This is split into several because of a Visual C++ 6.0 compiler bug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// where very long macros cause the compiler to crash
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    61
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)                 \
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    62
  f(NoHeaderExtendedOopClosure,_nv)                               \
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    63
  SERIALGC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f))        \
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    64
     CMSGC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f))
32606
fdaa30d06ada 8129417: Oop iteration clean-up to remove oop_ms_follow_contents
sjohanss
parents: 30764
diff changeset
    65
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    66
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)                 \
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    67
  SERIALGC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f))       \
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    68
     CMSGC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f))      \
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    69
      G1GC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f))       \
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    70
      G1GC_ONLY(SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1FULL(f))
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    71
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// We separate these out, because sometime the general one has
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
// a different definition from the specialized ones, and sometimes it
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// doesn't.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    76
#define ALL_OOP_OOP_ITERATE_CLOSURES_1(f)                         \
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    77
  f(ExtendedOopClosure,_v)                                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    80
#define ALL_OOP_OOP_ITERATE_CLOSURES_2(f)                         \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
    81
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
// want specialized bodies of a family of methods related to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
// "par_oop_iterate".  The arguments to f are the same as above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// The "root_class" is the most general class to define; this may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
// "OopClosure" in some applications and "OopsInGenClosure" in others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    90
#define ALL_PAR_OOP_ITERATE_CLOSURES(f)                           \
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
    91
  f(ExtendedOopClosure,_v)                                        \
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
    92
  CMSGC_ONLY(SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// want specialized bodies of a family of methods related to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// "oops_since_save_marks_do".  The arguments to f are the same as above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// The "root_class" is the most general class to define; this may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// "OopClosure" in some applications and "OopsInGenClosure" in others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
   100
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)  \
49982
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
   101
  SERIALGC_ONLY(SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f))   \
9042ffe5b7fe 8200729: Conditional compilation of GCs
stefank
parents: 49735
diff changeset
   102
     CMSGC_ONLY(SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f))
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
   104
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)                  \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
// We separate these out, because sometime the general one has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// a different definition from the specialized ones, and sometimes it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// doesn't.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
49735
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
   111
#define ALL_SINCE_SAVE_MARKS_CLOSURES(f)                          \
b3c09ab95c1a 8201217: Split specialized_oop_closures.hpp into GC specific files
stefank
parents: 47885
diff changeset
   112
  f(OopsInGenClosure,_v)                                          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
   115
#endif // SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP