< prev index next >

src/share/vm/gc/shared/specialized_oop_closures.hpp

Print this page
rev 12851 : 8138737: Remove oop_ms_adjust_pointers and use oop_iterate instead
Reviewed-by:


  27 
  28 #include "utilities/macros.hpp"
  29 #if INCLUDE_ALL_GCS
  30 #include "gc/g1/g1_specialized_oop_closures.hpp"
  31 #endif // INCLUDE_ALL_GCS
  32 
  33 // The following OopClosure types get specialized versions of
  34 // "oop_oop_iterate" that invoke the closures' do_oop methods
  35 // non-virtually, using a mechanism defined in this file.  Extend these
  36 // macros in the obvious way to add specializations for new closures.
  37 
  38 // Forward declarations.
  39 class OopClosure;
  40 class OopsInGenClosure;
  41 // DefNew
  42 class ScanClosure;
  43 class FastScanClosure;
  44 class FilteringClosure;
  45 // MarkSweep
  46 class MarkAndPushClosure;

  47 // ParNew
  48 class ParScanWithBarrierClosure;
  49 class ParScanWithoutBarrierClosure;
  50 // CMS
  51 class MarkRefsIntoAndScanClosure;
  52 class ParMarkRefsIntoAndScanClosure;
  53 class PushAndMarkClosure;
  54 class ParPushAndMarkClosure;
  55 class PushOrMarkClosure;
  56 class ParPushOrMarkClosure;
  57 class CMSKeepAliveClosure;
  58 class CMSInnerParMarkAndPushClosure;
  59 // Misc
  60 class NoHeaderExtendedOopClosure;
  61 
  62 // This macro applies an argument macro to all OopClosures for which we
  63 // want specialized bodies of "oop_oop_iterate".  The arguments to "f" are:
  64 //   "f(closureType, non_virtual)"
  65 // where "closureType" is the name of the particular subclass of ExtendedOopClosure,
  66 // and "non_virtual" will be the string "_nv" if the closure type should


  73 
  74 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)       \
  75   f(ScanClosure,_nv)                                    \
  76   f(FastScanClosure,_nv)                                \
  77   f(FilteringClosure,_nv)
  78 
  79 #if INCLUDE_ALL_GCS
  80 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)       \
  81   f(ParScanWithBarrierClosure,_nv)                      \
  82   f(ParScanWithoutBarrierClosure,_nv)
  83 #else  // INCLUDE_ALL_GCS
  84 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
  85 #endif // INCLUDE_ALL_GCS
  86 
  87 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)       \
  88   f(NoHeaderExtendedOopClosure,_nv)                     \
  89   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)             \
  90   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
  91 
  92 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f)      \
  93   f(MarkAndPushClosure,_nv)

  94 
  95 #if INCLUDE_ALL_GCS
  96 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)     \
  97   f(MarkRefsIntoAndScanClosure,_nv)                     \
  98   f(ParMarkRefsIntoAndScanClosure,_nv)                  \
  99   f(PushAndMarkClosure,_nv)                             \
 100   f(ParPushAndMarkClosure,_nv)                          \
 101   f(PushOrMarkClosure,_nv)                              \
 102   f(ParPushOrMarkClosure,_nv)                           \
 103   f(CMSKeepAliveClosure,_nv)                            \
 104   f(CMSInnerParMarkAndPushClosure,_nv)
 105 #endif
 106 
 107 #if INCLUDE_ALL_GCS
 108 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)       \
 109   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f)            \
 110   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)           \
 111   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f)
 112 #else  // INCLUDE_ALL_GCS
 113 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)       \




  27 
  28 #include "utilities/macros.hpp"
  29 #if INCLUDE_ALL_GCS
  30 #include "gc/g1/g1_specialized_oop_closures.hpp"
  31 #endif // INCLUDE_ALL_GCS
  32 
  33 // The following OopClosure types get specialized versions of
  34 // "oop_oop_iterate" that invoke the closures' do_oop methods
  35 // non-virtually, using a mechanism defined in this file.  Extend these
  36 // macros in the obvious way to add specializations for new closures.
  37 
  38 // Forward declarations.
  39 class OopClosure;
  40 class OopsInGenClosure;
  41 // DefNew
  42 class ScanClosure;
  43 class FastScanClosure;
  44 class FilteringClosure;
  45 // MarkSweep
  46 class MarkAndPushClosure;
  47 class AdjustPointerClosure;
  48 // ParNew
  49 class ParScanWithBarrierClosure;
  50 class ParScanWithoutBarrierClosure;
  51 // CMS
  52 class MarkRefsIntoAndScanClosure;
  53 class ParMarkRefsIntoAndScanClosure;
  54 class PushAndMarkClosure;
  55 class ParPushAndMarkClosure;
  56 class PushOrMarkClosure;
  57 class ParPushOrMarkClosure;
  58 class CMSKeepAliveClosure;
  59 class CMSInnerParMarkAndPushClosure;
  60 // Misc
  61 class NoHeaderExtendedOopClosure;
  62 
  63 // This macro applies an argument macro to all OopClosures for which we
  64 // want specialized bodies of "oop_oop_iterate".  The arguments to "f" are:
  65 //   "f(closureType, non_virtual)"
  66 // where "closureType" is the name of the particular subclass of ExtendedOopClosure,
  67 // and "non_virtual" will be the string "_nv" if the closure type should


  74 
  75 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)       \
  76   f(ScanClosure,_nv)                                    \
  77   f(FastScanClosure,_nv)                                \
  78   f(FilteringClosure,_nv)
  79 
  80 #if INCLUDE_ALL_GCS
  81 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)       \
  82   f(ParScanWithBarrierClosure,_nv)                      \
  83   f(ParScanWithoutBarrierClosure,_nv)
  84 #else  // INCLUDE_ALL_GCS
  85 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
  86 #endif // INCLUDE_ALL_GCS
  87 
  88 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_1(f)       \
  89   f(NoHeaderExtendedOopClosure,_nv)                     \
  90   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_S(f)             \
  91   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_P(f)
  92 
  93 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f)      \
  94   f(MarkAndPushClosure,_nv)                             \
  95   f(AdjustPointerClosure, _nv)
  96 
  97 #if INCLUDE_ALL_GCS
  98 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)     \
  99   f(MarkRefsIntoAndScanClosure,_nv)                     \
 100   f(ParMarkRefsIntoAndScanClosure,_nv)                  \
 101   f(PushAndMarkClosure,_nv)                             \
 102   f(ParPushAndMarkClosure,_nv)                          \
 103   f(PushOrMarkClosure,_nv)                              \
 104   f(ParPushOrMarkClosure,_nv)                           \
 105   f(CMSKeepAliveClosure,_nv)                            \
 106   f(CMSInnerParMarkAndPushClosure,_nv)
 107 #endif
 108 
 109 #if INCLUDE_ALL_GCS
 110 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)       \
 111   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_MS(f)            \
 112   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_CMS(f)           \
 113   SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_G1(f)
 114 #else  // INCLUDE_ALL_GCS
 115 #define SPECIALIZED_OOP_OOP_ITERATE_CLOSURES_2(f)       \


< prev index next >