src/share/vm/gc_implementation/g1/heapRegion.inline.hpp

Print this page




  77 // Because of the requirement of keeping "_offsets" up to date with the
  78 // allocations, we sequentialize these with a lock.  Therefore, best if
  79 // this is used for larger LAB allocations only.
  80 inline HeapWord* G1OffsetTableContigSpace::par_allocate(size_t size) {
  81   MutexLocker x(&_par_alloc_lock);
  82   return allocate(size);
  83 }
  84 
  85 inline HeapWord* G1OffsetTableContigSpace::block_start(const void* p) {
  86   return _offsets.block_start(p);
  87 }
  88 
  89 inline HeapWord*
  90 G1OffsetTableContigSpace::block_start_const(const void* p) const {
  91   return _offsets.block_start_const(p);
  92 }
  93 
  94 inline bool
  95 HeapRegion::block_is_obj(const HeapWord* p) const {
  96   G1CollectedHeap* g1h = G1CollectedHeap::heap();

  97   return !g1h->is_obj_dead(oop(p), this);


  98 }
  99 
 100 inline size_t
 101 HeapRegion::block_size(const HeapWord *addr) const {














 102   // Old regions' dead objects may have dead classes
 103   // We need to find the next live object in some other
 104   // manner than getting the oop size
 105   G1CollectedHeap* g1h = G1CollectedHeap::heap();
 106   if (g1h->is_obj_dead(oop(addr), this)) {
 107     HeapWord* next = g1h->concurrent_mark()->prevMarkBitMap()->
 108         getNextMarkedWordAddress(addr, prev_top_at_mark_start());
 109 
 110     assert(next > addr, "must get the next live object");
 111 
 112     return pointer_delta(next, addr);
 113   } else if (addr == top()) {
 114     return pointer_delta(end(), addr);
 115   }
 116   return oop(addr)->size();
 117 }
 118 
 119 inline HeapWord* HeapRegion::par_allocate_no_bot_updates(size_t word_size) {
 120   assert(is_young(), "we can only skip BOT updates on young regions");
 121   return par_allocate_impl(word_size, end());
 122 }
 123 
 124 inline HeapWord* HeapRegion::allocate_no_bot_updates(size_t word_size) {
 125   assert(is_young(), "we can only skip BOT updates on young regions");
 126   return allocate_impl(word_size, end());
 127 }
 128 
 129 inline void HeapRegion::note_start_of_marking() {
 130   _next_marked_bytes = 0;
 131   _next_top_at_mark_start = top();
 132 }
 133 
 134 inline void HeapRegion::note_end_of_marking() {
 135   _prev_top_at_mark_start = _next_top_at_mark_start;
 136   _prev_marked_bytes = _next_marked_bytes;




  77 // Because of the requirement of keeping "_offsets" up to date with the
  78 // allocations, we sequentialize these with a lock.  Therefore, best if
  79 // this is used for larger LAB allocations only.
  80 inline HeapWord* G1OffsetTableContigSpace::par_allocate(size_t size) {
  81   MutexLocker x(&_par_alloc_lock);
  82   return allocate(size);
  83 }
  84 
  85 inline HeapWord* G1OffsetTableContigSpace::block_start(const void* p) {
  86   return _offsets.block_start(p);
  87 }
  88 
  89 inline HeapWord*
  90 G1OffsetTableContigSpace::block_start_const(const void* p) const {
  91   return _offsets.block_start_const(p);
  92 }
  93 
  94 inline bool
  95 HeapRegion::block_is_obj(const HeapWord* p) const {
  96   G1CollectedHeap* g1h = G1CollectedHeap::heap();
  97   if (G1ClassUnloadingEnabled) {
  98     return !g1h->is_obj_dead(oop(p), this);
  99   }
 100   return p < top();
 101 }
 102 
 103 inline size_t
 104 HeapRegion::block_size(const HeapWord *addr) const {
 105   if (addr == top()) {
 106     return pointer_delta(end(), addr);
 107   }
 108 
 109   if (block_is_obj(addr)) {
 110     return oop(addr)->size();
 111   }
 112 
 113   assert(G1ClassUnloadingEnabled,
 114       err_msg("All blocks should be objects if G1 Class Unloading isn't used. "
 115               "HR: ["PTR_FORMAT", "PTR_FORMAT", "PTR_FORMAT") "
 116               "addr: " PTR_FORMAT,
 117               p2i(bottom()), p2i(top()), p2i(end()), p2i(addr)));
 118 
 119   // Old regions' dead objects may have dead classes
 120   // We need to find the next live object in some other
 121   // manner than getting the oop size
 122   G1CollectedHeap* g1h = G1CollectedHeap::heap();

 123   HeapWord* next = g1h->concurrent_mark()->prevMarkBitMap()->
 124       getNextMarkedWordAddress(addr, prev_top_at_mark_start());
 125 
 126   assert(next > addr, "must get the next live object");

 127   return pointer_delta(next, addr);




 128 }
 129 
 130 inline HeapWord* HeapRegion::par_allocate_no_bot_updates(size_t word_size) {
 131   assert(is_young(), "we can only skip BOT updates on young regions");
 132   return par_allocate_impl(word_size, end());
 133 }
 134 
 135 inline HeapWord* HeapRegion::allocate_no_bot_updates(size_t word_size) {
 136   assert(is_young(), "we can only skip BOT updates on young regions");
 137   return allocate_impl(word_size, end());
 138 }
 139 
 140 inline void HeapRegion::note_start_of_marking() {
 141   _next_marked_bytes = 0;
 142   _next_top_at_mark_start = top();
 143 }
 144 
 145 inline void HeapRegion::note_end_of_marking() {
 146   _prev_top_at_mark_start = _next_top_at_mark_start;
 147   _prev_marked_bytes = _next_marked_bytes;