< prev index next >

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

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 #include "precompiled.hpp"
  26 #include "gc/shared/cardTableRS.hpp"
  27 #include "gc/shared/genCollectedHeap.hpp"

  28 #include "gc/shared/generation.hpp"
  29 #include "gc/shared/space.inline.hpp"
  30 #include "memory/allocation.inline.hpp"
  31 #include "oops/access.inline.hpp"
  32 #include "oops/oop.inline.hpp"
  33 #include "runtime/atomic.hpp"
  34 #include "runtime/java.hpp"
  35 #include "runtime/os.hpp"
  36 #include "utilities/macros.hpp"
  37 
  38 class HasAccumulatedModifiedOopsClosure : public CLDClosure {
  39   bool _found;
  40  public:
  41   HasAccumulatedModifiedOopsClosure() : _found(false) {}
  42   void do_cld(ClassLoaderData* cld) {
  43     if (_found) {
  44       return;
  45     }
  46 
  47     if (cld->has_accumulated_modified_oops()) {




   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/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()) {


< prev index next >