< prev index next >

src/hotspot/share/gc/g1/g1FullGCOopClosures.inline.hpp

Print this page




   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  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_G1_G1FULLGCOOPCLOSURES_INLINE_HPP
  26 #define SHARE_VM_GC_G1_G1FULLGCOOPCLOSURES_INLINE_HPP
  27 
  28 #include "gc/g1/g1Allocator.hpp"
  29 #include "gc/g1/g1ConcurrentMarkBitMap.inline.hpp"
  30 #include "gc/g1/g1FullGCMarker.inline.hpp"
  31 #include "gc/g1/g1FullGCOopClosures.hpp"
  32 #include "gc/g1/heapRegionRemSet.hpp"
  33 #include "memory/iterator.inline.hpp"
  34 #include "oops/access.inline.hpp"
  35 #include "oops/compressedOops.inline.hpp"
  36 #include "oops/oop.inline.hpp"
  37 
  38 template <typename T>
  39 inline void G1MarkAndPushClosure::do_oop_work(T* p) {
  40   _marker->mark_and_push(p);
  41 }
  42 
  43 inline void G1MarkAndPushClosure::do_oop(oop* p) {
  44   do_oop_work(p);
  45 }
  46 
  47 inline void G1MarkAndPushClosure::do_oop(narrowOop* p) {
  48   do_oop_work(p);




   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  *
  23  */
  24 
  25 #ifndef SHARE_VM_GC_G1_G1FULLGCOOPCLOSURES_INLINE_HPP
  26 #define SHARE_VM_GC_G1_G1FULLGCOOPCLOSURES_INLINE_HPP
  27 
  28 #include "gc/g1/g1Allocator.inline.hpp"
  29 #include "gc/g1/g1ConcurrentMarkBitMap.inline.hpp"
  30 #include "gc/g1/g1FullGCMarker.inline.hpp"
  31 #include "gc/g1/g1FullGCOopClosures.hpp"
  32 #include "gc/g1/heapRegionRemSet.hpp"
  33 #include "memory/iterator.inline.hpp"
  34 #include "oops/access.inline.hpp"
  35 #include "oops/compressedOops.inline.hpp"
  36 #include "oops/oop.inline.hpp"
  37 
  38 template <typename T>
  39 inline void G1MarkAndPushClosure::do_oop_work(T* p) {
  40   _marker->mark_and_push(p);
  41 }
  42 
  43 inline void G1MarkAndPushClosure::do_oop(oop* p) {
  44   do_oop_work(p);
  45 }
  46 
  47 inline void G1MarkAndPushClosure::do_oop(narrowOop* p) {
  48   do_oop_work(p);


< prev index next >