< prev index next >

src/hotspot/share/gc/shared/cardTableRS.cpp

Print this page




  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 #include "precompiled.hpp"
  26 #include "gc/shared/cardTableRS.hpp"
  27 #include "gc/shared/genCollectedHeap.hpp"
  28 #include "gc/shared/genOopClosures.hpp"
  29 #include "gc/shared/generation.hpp"
  30 #include "gc/shared/space.inline.hpp"
  31 #include "memory/allocation.inline.hpp"

  32 #include "oops/access.inline.hpp"
  33 #include "oops/oop.inline.hpp"
  34 #include "runtime/atomic.hpp"
  35 #include "runtime/java.hpp"
  36 #include "runtime/os.hpp"
  37 #include "utilities/macros.hpp"
  38 
  39 class HasAccumulatedModifiedOopsClosure : public CLDClosure {
  40   bool _found;
  41  public:
  42   HasAccumulatedModifiedOopsClosure() : _found(false) {}
  43   void do_cld(ClassLoaderData* cld) {
  44     if (_found) {
  45       return;
  46     }
  47 
  48     if (cld->has_accumulated_modified_oops()) {
  49       _found = true;
  50     }
  51   }




  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 #include "precompiled.hpp"
  26 #include "gc/shared/cardTableRS.hpp"
  27 #include "gc/shared/genCollectedHeap.hpp"
  28 #include "gc/shared/genOopClosures.hpp"
  29 #include "gc/shared/generation.hpp"
  30 #include "gc/shared/space.inline.hpp"
  31 #include "memory/allocation.inline.hpp"
  32 #include "memory/iterator.inline.hpp"
  33 #include "oops/access.inline.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "runtime/atomic.hpp"
  36 #include "runtime/java.hpp"
  37 #include "runtime/os.hpp"
  38 #include "utilities/macros.hpp"
  39 
  40 class HasAccumulatedModifiedOopsClosure : public CLDClosure {
  41   bool _found;
  42  public:
  43   HasAccumulatedModifiedOopsClosure() : _found(false) {}
  44   void do_cld(ClassLoaderData* cld) {
  45     if (_found) {
  46       return;
  47     }
  48 
  49     if (cld->has_accumulated_modified_oops()) {
  50       _found = true;
  51     }
  52   }


< prev index next >