< prev index next >

src/share/vm/gc/cms/parOopClosures.inline.hpp

Print this page
rev 13265 : imported patch 8181917-refactor-ul-logstream


  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 #ifndef SHARE_VM_GC_CMS_PAROOPCLOSURES_INLINE_HPP
  26 #define SHARE_VM_GC_CMS_PAROOPCLOSURES_INLINE_HPP
  27 
  28 #include "gc/cms/parNewGeneration.hpp"
  29 #include "gc/cms/parOopClosures.hpp"
  30 #include "gc/shared/cardTableRS.hpp"
  31 #include "gc/shared/genCollectedHeap.hpp"
  32 #include "gc/shared/genOopClosures.inline.hpp"
  33 #include "logging/log.hpp"

  34 
  35 template <class T> inline void ParScanWeakRefClosure::do_oop_work(T* p) {
  36   assert (!oopDesc::is_null(*p), "null weak reference?");
  37   oop obj = oopDesc::load_decode_heap_oop_not_null(p);
  38   // weak references are sometimes scanned twice; must check
  39   // that to-space doesn't already contain this object
  40   if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
  41     // we need to ensure that it is copied (see comment in
  42     // ParScanClosure::do_oop_work).
  43     Klass* objK = obj->klass();
  44     markOop m = obj->mark();
  45     oop new_obj;
  46     if (m->is_marked()) { // Contains forwarding pointer.
  47       new_obj = ParNewGeneration::real_forwardee(obj);
  48     } else {
  49       size_t obj_sz = obj->size_given_klass(objK);
  50       new_obj = ((ParNewGeneration*)_g)->copy_to_survivor_space(_par_scan_state,
  51                                                                 obj, obj_sz, m);
  52     }
  53     oopDesc::encode_store_heap_oop_not_null(p, new_obj);


  73                                         bool root_scan) {
  74   assert((!GenCollectedHeap::heap()->is_in_reserved(p) ||
  75           generation()->is_in_reserved(p))
  76          && (GenCollectedHeap::heap()->is_young_gen(generation()) || gc_barrier),
  77          "The gen must be right, and we must be doing the barrier "
  78          "in older generations.");
  79   T heap_oop = oopDesc::load_heap_oop(p);
  80   if (!oopDesc::is_null(heap_oop)) {
  81     oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
  82     if ((HeapWord*)obj < _boundary) {
  83 #ifndef PRODUCT
  84       if (_g->to()->is_in_reserved(obj)) {
  85         Log(gc) log;
  86         log.error("Scanning field (" PTR_FORMAT ") twice?", p2i(p));
  87         GenCollectedHeap* gch = GenCollectedHeap::heap();
  88         Space* sp = gch->space_containing(p);
  89         oop obj = oop(sp->block_start(p));
  90         assert((HeapWord*)obj < (HeapWord*)p, "Error");
  91         log.error("Object: " PTR_FORMAT, p2i((void *)obj));
  92         log.error("-------");
  93         obj->print_on(log.error_stream());

  94         log.error("-----");
  95         log.error("Heap:");
  96         log.error("-----");
  97         gch->print_on(log.error_stream());
  98         ShouldNotReachHere();
  99       }
 100 #endif
 101       // OK, we need to ensure that it is copied.
 102       // We read the klass and mark in this order, so that we can reliably
 103       // get the size of the object: if the mark we read is not a
 104       // forwarding pointer, then the klass is valid: the klass is only
 105       // overwritten with an overflow next pointer after the object is
 106       // forwarded.
 107       Klass* objK = obj->klass();
 108       markOop m = obj->mark();
 109       oop new_obj;
 110       if (m->is_marked()) { // Contains forwarding pointer.
 111         new_obj = ParNewGeneration::real_forwardee(obj);
 112         oopDesc::encode_store_heap_oop_not_null(p, new_obj);
 113         log_develop_trace(gc, scavenge)("{%s %s ( " PTR_FORMAT " ) " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
 114                                         "forwarded ",
 115                                         new_obj->klass()->internal_name(), p2i(p), p2i((void *)obj), p2i((void *)new_obj), new_obj->size());
 116       } else {
 117         size_t obj_sz = obj->size_given_klass(objK);




  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 #ifndef SHARE_VM_GC_CMS_PAROOPCLOSURES_INLINE_HPP
  26 #define SHARE_VM_GC_CMS_PAROOPCLOSURES_INLINE_HPP
  27 
  28 #include "gc/cms/parNewGeneration.hpp"
  29 #include "gc/cms/parOopClosures.hpp"
  30 #include "gc/shared/cardTableRS.hpp"
  31 #include "gc/shared/genCollectedHeap.hpp"
  32 #include "gc/shared/genOopClosures.inline.hpp"
  33 #include "logging/log.hpp"
  34 #include "logging/logStream.hpp"
  35 
  36 template <class T> inline void ParScanWeakRefClosure::do_oop_work(T* p) {
  37   assert (!oopDesc::is_null(*p), "null weak reference?");
  38   oop obj = oopDesc::load_decode_heap_oop_not_null(p);
  39   // weak references are sometimes scanned twice; must check
  40   // that to-space doesn't already contain this object
  41   if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
  42     // we need to ensure that it is copied (see comment in
  43     // ParScanClosure::do_oop_work).
  44     Klass* objK = obj->klass();
  45     markOop m = obj->mark();
  46     oop new_obj;
  47     if (m->is_marked()) { // Contains forwarding pointer.
  48       new_obj = ParNewGeneration::real_forwardee(obj);
  49     } else {
  50       size_t obj_sz = obj->size_given_klass(objK);
  51       new_obj = ((ParNewGeneration*)_g)->copy_to_survivor_space(_par_scan_state,
  52                                                                 obj, obj_sz, m);
  53     }
  54     oopDesc::encode_store_heap_oop_not_null(p, new_obj);


  74                                         bool root_scan) {
  75   assert((!GenCollectedHeap::heap()->is_in_reserved(p) ||
  76           generation()->is_in_reserved(p))
  77          && (GenCollectedHeap::heap()->is_young_gen(generation()) || gc_barrier),
  78          "The gen must be right, and we must be doing the barrier "
  79          "in older generations.");
  80   T heap_oop = oopDesc::load_heap_oop(p);
  81   if (!oopDesc::is_null(heap_oop)) {
  82     oop obj = oopDesc::decode_heap_oop_not_null(heap_oop);
  83     if ((HeapWord*)obj < _boundary) {
  84 #ifndef PRODUCT
  85       if (_g->to()->is_in_reserved(obj)) {
  86         Log(gc) log;
  87         log.error("Scanning field (" PTR_FORMAT ") twice?", p2i(p));
  88         GenCollectedHeap* gch = GenCollectedHeap::heap();
  89         Space* sp = gch->space_containing(p);
  90         oop obj = oop(sp->block_start(p));
  91         assert((HeapWord*)obj < (HeapWord*)p, "Error");
  92         log.error("Object: " PTR_FORMAT, p2i((void *)obj));
  93         log.error("-------");
  94         LogStream ls(log.error());
  95         obj->print_on(&ls);
  96         log.error("-----");
  97         log.error("Heap:");
  98         log.error("-----");
  99         gch->print_on(&ls);
 100         ShouldNotReachHere();
 101       }
 102 #endif
 103       // OK, we need to ensure that it is copied.
 104       // We read the klass and mark in this order, so that we can reliably
 105       // get the size of the object: if the mark we read is not a
 106       // forwarding pointer, then the klass is valid: the klass is only
 107       // overwritten with an overflow next pointer after the object is
 108       // forwarded.
 109       Klass* objK = obj->klass();
 110       markOop m = obj->mark();
 111       oop new_obj;
 112       if (m->is_marked()) { // Contains forwarding pointer.
 113         new_obj = ParNewGeneration::real_forwardee(obj);
 114         oopDesc::encode_store_heap_oop_not_null(p, new_obj);
 115         log_develop_trace(gc, scavenge)("{%s %s ( " PTR_FORMAT " ) " PTR_FORMAT " -> " PTR_FORMAT " (%d)}",
 116                                         "forwarded ",
 117                                         new_obj->klass()->internal_name(), p2i(p), p2i((void *)obj), p2i((void *)new_obj), new_obj->size());
 118       } else {
 119         size_t obj_sz = obj->size_given_klass(objK);


< prev index next >