< 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:
rev 12852 : [mq]: 8138737-remove-oop-ms-adjust-kbarrett-rev1
   1 /*
   2  * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  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)       \


   1 /*
   2  * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *


  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 >