src/share/vm/gc_implementation/g1/g1SATBCardTableModRefBS.cpp

Fri, 04 Oct 2013 13:37:25 -0700

author
jcoomes
date
Fri, 04 Oct 2013 13:37:25 -0700
changeset 5820
798522662fcd
parent 5784
190899198332
parent 5811
d55c004e1d4d
child 5865
aa6f2ea19d8f
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 2001, 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  */
    25 #include "precompiled.hpp"
    26 #include "gc_implementation/g1/g1SATBCardTableModRefBS.hpp"
    27 #include "gc_implementation/g1/heapRegion.hpp"
    28 #include "gc_implementation/g1/satbQueue.hpp"
    29 #include "runtime/mutexLocker.hpp"
    30 #include "runtime/thread.inline.hpp"
    32 G1SATBCardTableModRefBS::G1SATBCardTableModRefBS(MemRegion whole_heap,
    33                                                  int max_covered_regions) :
    34     CardTableModRefBSForCTRS(whole_heap, max_covered_regions)
    35 {
    36   _kind = G1SATBCT;
    37 }
    40 void G1SATBCardTableModRefBS::enqueue(oop pre_val) {
    41   // Nulls should have been already filtered.
    42   assert(pre_val->is_oop(true), "Error");
    44   if (!JavaThread::satb_mark_queue_set().is_active()) return;
    45   Thread* thr = Thread::current();
    46   if (thr->is_Java_thread()) {
    47     JavaThread* jt = (JavaThread*)thr;
    48     jt->satb_mark_queue().enqueue(pre_val);
    49   } else {
    50     MutexLockerEx x(Shared_SATB_Q_lock, Mutex::_no_safepoint_check_flag);
    51     JavaThread::satb_mark_queue_set().shared_satb_queue()->enqueue(pre_val);
    52   }
    53 }
    55 template <class T> void
    56 G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) {
    57   if (!JavaThread::satb_mark_queue_set().is_active()) return;
    58   T* elem_ptr = dst;
    59   for (int i = 0; i < count; i++, elem_ptr++) {
    60     T heap_oop = oopDesc::load_heap_oop(elem_ptr);
    61     if (!oopDesc::is_null(heap_oop)) {
    62       enqueue(oopDesc::decode_heap_oop_not_null(heap_oop));
    63     }
    64   }
    65 }
    67 bool G1SATBCardTableModRefBS::mark_card_deferred(size_t card_index) {
    68   jbyte val = _byte_map[card_index];
    69   // It's already processed
    70   if ((val & (clean_card_mask_val() | deferred_card_val())) == deferred_card_val()) {
    71     return false;
    72   }
    73   // Cached bit can be installed either on a clean card or on a claimed card.
    74   jbyte new_val = val;
    75   if (val == clean_card_val()) {
    76     new_val = (jbyte)deferred_card_val();
    77   } else {
    78     if (val & claimed_card_val()) {
    79       new_val = val | (jbyte)deferred_card_val();
    80     }
    81   }
    82   if (new_val != val) {
    83     Atomic::cmpxchg(new_val, &_byte_map[card_index], val);
    84   }
    85   return true;
    86 }
    88 G1SATBCardTableLoggingModRefBS::
    89 G1SATBCardTableLoggingModRefBS(MemRegion whole_heap,
    90                                int max_covered_regions) :
    91   G1SATBCardTableModRefBS(whole_heap, max_covered_regions),
    92   _dcqs(JavaThread::dirty_card_queue_set())
    93 {
    94   _kind = G1SATBCTLogging;
    95 }
    97 void
    98 G1SATBCardTableLoggingModRefBS::write_ref_field_work(void* field,
    99                                                      oop new_val) {
   100   jbyte* byte = byte_for(field);
   101   if (*byte != dirty_card) {
   102     *byte = dirty_card;
   103     Thread* thr = Thread::current();
   104     if (thr->is_Java_thread()) {
   105       JavaThread* jt = (JavaThread*)thr;
   106       jt->dirty_card_queue().enqueue(byte);
   107     } else {
   108       MutexLockerEx x(Shared_DirtyCardQ_lock,
   109                       Mutex::_no_safepoint_check_flag);
   110       _dcqs.shared_dirty_card_queue()->enqueue(byte);
   111     }
   112   }
   113 }
   115 void
   116 G1SATBCardTableLoggingModRefBS::write_ref_field_static(void* field,
   117                                                        oop new_val) {
   118   uintptr_t field_uint = (uintptr_t)field;
   119   uintptr_t new_val_uint = cast_from_oop<uintptr_t>(new_val);
   120   uintptr_t comb = field_uint ^ new_val_uint;
   121   comb = comb >> HeapRegion::LogOfHRGrainBytes;
   122   if (comb == 0) return;
   123   if (new_val == NULL) return;
   124   // Otherwise, log it.
   125   G1SATBCardTableLoggingModRefBS* g1_bs =
   126     (G1SATBCardTableLoggingModRefBS*)Universe::heap()->barrier_set();
   127   g1_bs->write_ref_field_work(field, new_val);
   128 }
   130 void
   131 G1SATBCardTableLoggingModRefBS::invalidate(MemRegion mr, bool whole_heap) {
   132   jbyte* byte = byte_for(mr.start());
   133   jbyte* last_byte = byte_for(mr.last());
   134   Thread* thr = Thread::current();
   135   if (whole_heap) {
   136     while (byte <= last_byte) {
   137       *byte = dirty_card;
   138       byte++;
   139     }
   140   } else {
   141     // Enqueue if necessary.
   142     if (thr->is_Java_thread()) {
   143       JavaThread* jt = (JavaThread*)thr;
   144       while (byte <= last_byte) {
   145         if (*byte != dirty_card) {
   146           *byte = dirty_card;
   147           jt->dirty_card_queue().enqueue(byte);
   148         }
   149         byte++;
   150       }
   151     } else {
   152       MutexLockerEx x(Shared_DirtyCardQ_lock,
   153                       Mutex::_no_safepoint_check_flag);
   154       while (byte <= last_byte) {
   155         if (*byte != dirty_card) {
   156           *byte = dirty_card;
   157           _dcqs.shared_dirty_card_queue()->enqueue(byte);
   158         }
   159         byte++;
   160       }
   161     }
   162   }
   163 }

mercurial