< prev index next >

src/share/vm/gc/shared/genOopClosures.inline.hpp

Print this page
rev 8362 : [mq]: hotspot

*** 1,7 **** /* ! * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 20,39 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_MEMORY_GENOOPCLOSURES_INLINE_HPP ! #define SHARE_VM_MEMORY_GENOOPCLOSURES_INLINE_HPP ! #include "memory/cardTableRS.hpp" ! #include "memory/defNewGeneration.hpp" ! #include "memory/genCollectedHeap.hpp" ! #include "memory/genOopClosures.hpp" ! #include "memory/genRemSet.hpp" ! #include "memory/generation.hpp" ! #include "memory/space.hpp" inline OopsInGenClosure::OopsInGenClosure(Generation* gen) : ExtendedOopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) { set_generation(gen); } --- 20,39 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ ! #ifndef SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP ! #define SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP ! #include "gc/serial/defNewGeneration.hpp" ! #include "gc/shared/cardTableRS.hpp" ! #include "gc/shared/genCollectedHeap.hpp" ! #include "gc/shared/genOopClosures.hpp" ! #include "gc/shared/genRemSet.hpp" ! #include "gc/shared/generation.hpp" ! #include "gc/shared/space.hpp" inline OopsInGenClosure::OopsInGenClosure(Generation* gen) : ExtendedOopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) { set_generation(gen); }
*** 141,146 **** } inline void ScanWeakRefClosure::do_oop_nv(oop* p) { ScanWeakRefClosure::do_oop_work(p); } inline void ScanWeakRefClosure::do_oop_nv(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); } ! #endif // SHARE_VM_MEMORY_GENOOPCLOSURES_INLINE_HPP --- 141,146 ---- } inline void ScanWeakRefClosure::do_oop_nv(oop* p) { ScanWeakRefClosure::do_oop_work(p); } inline void ScanWeakRefClosure::do_oop_nv(narrowOop* p) { ScanWeakRefClosure::do_oop_work(p); } ! #endif // SHARE_VM_GC_SHARED_GENOOPCLOSURES_INLINE_HPP
< prev index next >