hotspot/src/share/vm/gc/shared/specialized_oop_closures.hpp
author pliden
Wed, 13 May 2015 15:16:06 +0200
changeset 30764 fec48bf5a827
parent 29688 hotspot/src/share/vm/memory/specialized_oop_closures.hpp@2a0cad173059
child 32606 fdaa30d06ada
permissions -rw-r--r--
8079792: GC directory structure cleanup Reviewed-by: brutisso, stefank, david
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
     2
 * Copyright (c) 2001, 2015, 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
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    28
#include "utilities/macros.hpp"
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    29
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
    30
#include "gc/g1/g1_specialized_oop_closures.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    31
#endif // INCLUDE_ALL_GCS
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// The following OopClosure types get specialized versions of
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// "oop_oop_iterate" that invoke the closures' do_oop methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// non-virtually, using a mechanism defined in this file.  Extend these
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// macros in the obvious way to add specializations for new closures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// Forward declarations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class OopsInGenClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// DefNew
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ScanClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class FastScanClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class FilteringClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// ParNew
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class ParScanWithBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class ParScanWithoutBarrierClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
// CMS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
class MarkRefsIntoAndScanClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
class Par_MarkRefsIntoAndScanClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
class PushAndMarkClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class Par_PushAndMarkClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
class PushOrMarkClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
class Par_PushOrMarkClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
class CMSKeepAliveClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
class CMSInnerParMarkAndPushClosure;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    57
// Misc
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    58
class NoHeaderExtendedOopClosure;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// want specialized bodies of "oop_oop_iterate".  The arguments to "f" are:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//   "f(closureType, non_virtual)"
29687
281ffb2398cd 8075242: Remove SpecializationStats
stefank
parents: 25351
diff changeset
    63
// where "closureType" is the name of the particular subclass of ExtendedOopClosure,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// and "non_virtual" will be the string "_nv" if the closure type should
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// have its "do_oop" method invoked non-virtually, or else the
29687
281ffb2398cd 8075242: Remove SpecializationStats
stefank
parents: 25351
diff changeset
    66
// string "_v".  ("ExtendedOopClosure" itself will be the only class in the latter
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// category.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// This is split into several because of a Visual C++ 6.0 compiler bug
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// where very long macros cause the compiler to crash
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  f(ScanClosure,_nv)                                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  f(FastScanClosure,_nv)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  f(FilteringClosure,_nv)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    77
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  f(ParScanWithBarrierClosure,_nv)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  f(ParScanWithoutBarrierClosure,_nv)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    81
#else  // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    83
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)       \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    86
  f(NoHeaderExtendedOopClosure,_nv)                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
    90
#if INCLUDE_ALL_GCS
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
    91
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  f(MarkRefsIntoAndScanClosure,_nv)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  f(Par_MarkRefsIntoAndScanClosure,_nv)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  f(PushAndMarkClosure,_nv)                             \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  f(Par_PushAndMarkClosure,_nv)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  f(PushOrMarkClosure,_nv)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  f(Par_PushOrMarkClosure,_nv)                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  f(CMSKeepAliveClosure,_nv)                            \
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
    99
  f(CMSInnerParMarkAndPushClosure,_nv)
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   100
#endif
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   101
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   102
#if INCLUDE_ALL_GCS
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   103
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)       \
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   104
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)           \
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   105
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   106
#else  // INCLUDE_ALL_GCS
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   107
#define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   108
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   110
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
// We separate these out, because sometime the general one has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// a different definition from the specialized ones, and sometimes it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// doesn't.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
#define ALL_OOP_OOP_ITERATE_CLOSURES_1(f)               \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   116
  f(ExtendedOopClosure,_v)                              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   119
#define ALL_OOP_OOP_ITERATE_CLOSURES_2(f)               \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 1
diff changeset
   120
  SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   122
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
// want specialized bodies of a family of methods related to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
// "par_oop_iterate".  The arguments to f are the same as above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
// The "root_class" is the most general class to define; this may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
// "OopClosure" in some applications and "OopsInGenClosure" in others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
#define SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f)        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  f(MarkRefsIntoAndScanClosure,_nv)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  f(PushAndMarkClosure,_nv)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  f(Par_MarkRefsIntoAndScanClosure,_nv)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  f(Par_PushAndMarkClosure,_nv)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
#define ALL_PAR_OOP_ITERATE_CLOSURES(f)                \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   136
  f(ExtendedOopClosure,_v)                             \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  SPECIALIZED_PAR_OOP_ITERATE_CLOSURES(f)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   138
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
// This macro applies an argument macro to all OopClosures for which we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
// want specialized bodies of a family of methods related to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
// "oops_since_save_marks_do".  The arguments to f are the same as above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
// The "root_class" is the most general class to define; this may be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
// "OopClosure" in some applications and "OopsInGenClosure" in others.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  f(ScanClosure,_nv)                                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  f(FastScanClosure,_nv)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   150
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  f(ParScanWithBarrierClosure,_nv)                       \
29688
2a0cad173059 8075247: Cleanup specialized_oop_closures.hpp
stefank
parents: 29687
diff changeset
   153
  f(ParScanWithoutBarrierClosure,_nv)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   154
#else  // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13952
diff changeset
   156
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_S(f)      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG_P(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
#define SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES_YOUNG(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
// We separate these out, because sometime the general one has
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
// a different definition from the specialized ones, and sometimes it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
// doesn't.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
#define ALL_SINCE_SAVE_MARKS_CLOSURES(f)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  f(OopsInGenClosure,_v)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  SPECIALIZED_SINCE_SAVE_MARKS_CLOSURES(f)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 29688
diff changeset
   173
#endif // SHARE_VM_GC_SHARED_SPECIALIZED_OOP_CLOSURES_HPP