< prev index next >

src/share/vm/gc/g1/g1RemSetSummary.cpp

Print this page
rev 8362 : [mq]: hotspot
   1 /*
   2  * Copyright (c) 2013, 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  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "gc_implementation/g1/concurrentG1Refine.hpp"
  27 #include "gc_implementation/g1/concurrentG1RefineThread.hpp"
  28 #include "gc_implementation/g1/heapRegion.hpp"
  29 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
  30 #include "gc_implementation/g1/g1RemSet.inline.hpp"
  31 #include "gc_implementation/g1/g1RemSetSummary.hpp"
  32 #include "gc_implementation/g1/heapRegionRemSet.hpp"
  33 #include "runtime/thread.inline.hpp"
  34 
  35 class GetRSThreadVTimeClosure : public ThreadClosure {
  36 private:
  37   G1RemSetSummary* _summary;
  38   uint _counter;
  39 
  40 public:
  41   GetRSThreadVTimeClosure(G1RemSetSummary * summary) : ThreadClosure(), _summary(summary), _counter(0) {
  42     assert(_summary != NULL, "just checking");
  43   }
  44 
  45   virtual void do_thread(Thread* t) {
  46     ConcurrentG1RefineThread* crt = (ConcurrentG1RefineThread*) t;
  47     _summary->set_rs_thread_vtime(_counter, crt->vtime_accum());
  48     _counter++;
  49   }
  50 };
  51 
  52 void G1RemSetSummary::update() {


   1 /*
   2  * Copyright (c) 2013, 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  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "gc/g1/concurrentG1Refine.hpp"
  27 #include "gc/g1/concurrentG1RefineThread.hpp"
  28 #include "gc/g1/g1CollectedHeap.inline.hpp"
  29 #include "gc/g1/g1RemSet.inline.hpp"
  30 #include "gc/g1/g1RemSetSummary.hpp"
  31 #include "gc/g1/heapRegion.hpp"
  32 #include "gc/g1/heapRegionRemSet.hpp"
  33 #include "runtime/thread.inline.hpp"
  34 
  35 class GetRSThreadVTimeClosure : public ThreadClosure {
  36 private:
  37   G1RemSetSummary* _summary;
  38   uint _counter;
  39 
  40 public:
  41   GetRSThreadVTimeClosure(G1RemSetSummary * summary) : ThreadClosure(), _summary(summary), _counter(0) {
  42     assert(_summary != NULL, "just checking");
  43   }
  44 
  45   virtual void do_thread(Thread* t) {
  46     ConcurrentG1RefineThread* crt = (ConcurrentG1RefineThread*) t;
  47     _summary->set_rs_thread_vtime(_counter, crt->vtime_accum());
  48     _counter++;
  49   }
  50 };
  51 
  52 void G1RemSetSummary::update() {


< prev index next >