1 /* 2 * Copyright (c) 2018, 2019, Red Hat, Inc. 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 #ifndef SHARE_GC_SHENANDOAH_SHENANDOAHMARKINGCONTEXT_INLINE_HPP 26 #define SHARE_GC_SHENANDOAH_SHENANDOAHMARKINGCONTEXT_INLINE_HPP 27 28 #include "gc/shenandoah/shenandoahMarkingContext.hpp" 29 30 #include "gc/shenandoah/shenandoahMarkBitMap.inline.hpp" 31 32 inline bool ShenandoahMarkingContext::mark_strong(oop obj, bool& was_upgraded) { 33 return !allocated_after_mark_start(obj) && _mark_bit_map.mark_strong(cast_from_oop<HeapWord*>(obj), was_upgraded); 34 } 35 36 inline bool ShenandoahMarkingContext::mark_weak(oop obj) { 37 return !allocated_after_mark_start(obj) && _mark_bit_map.mark_weak(cast_from_oop<HeapWord *>(obj)); 38 } 39 40 inline bool ShenandoahMarkingContext::is_marked(oop obj) const { 41 return is_marked(cast_from_oop<HeapWord*>(obj)); 42 } 43 44 inline bool ShenandoahMarkingContext::is_marked(HeapWord* raw_obj) const { 45 return allocated_after_mark_start(raw_obj) || _mark_bit_map.is_marked(raw_obj); 46 } 47 48 inline bool ShenandoahMarkingContext::is_marked_strong(oop obj) const { 49 return is_marked_strong(cast_from_oop<HeapWord*>(obj)); 50 } 51 52 inline bool ShenandoahMarkingContext::is_marked_strong(HeapWord* raw_obj) const { 53 return allocated_after_mark_start(raw_obj) || _mark_bit_map.is_marked_strong(raw_obj); 54 } 55 56 inline bool ShenandoahMarkingContext::is_marked_weak(oop obj) const { 57 return allocated_after_mark_start(obj) || _mark_bit_map.is_marked_weak(cast_from_oop<HeapWord *>(obj)); 58 } 59 60 inline HeapWord* ShenandoahMarkingContext::get_next_marked_addr(HeapWord* start, HeapWord* limit) const { 61 return _mark_bit_map.get_next_marked_addr(start, limit); 62 } 63 64 inline bool ShenandoahMarkingContext::allocated_after_mark_start(oop obj) const { 65 HeapWord* addr = cast_from_oop<HeapWord*>(obj); 66 return allocated_after_mark_start(addr); 67 } 68 69 inline bool ShenandoahMarkingContext::allocated_after_mark_start(HeapWord* addr) const { 70 uintx index = ((uintx) addr) >> ShenandoahHeapRegion::region_size_bytes_shift(); 71 HeapWord* top_at_mark_start = _top_at_mark_starts[index]; 72 bool alloc_after_mark_start = addr >= top_at_mark_start; 73 return alloc_after_mark_start; 74 } 75 76 inline void ShenandoahMarkingContext::capture_top_at_mark_start(ShenandoahHeapRegion *r) { 77 size_t idx = r->index(); 78 HeapWord* old_tams = _top_at_mark_starts_base[idx]; 79 HeapWord* new_tams = r->top(); 80 81 assert(new_tams >= old_tams, 82 "Region " SIZE_FORMAT", TAMS updates should be monotonic: " PTR_FORMAT " -> " PTR_FORMAT, 83 idx, p2i(old_tams), p2i(new_tams)); 84 assert(is_bitmap_clear_range(old_tams, new_tams), 85 "Region " SIZE_FORMAT ", bitmap should be clear while adjusting TAMS: " PTR_FORMAT " -> " PTR_FORMAT, 86 idx, p2i(old_tams), p2i(new_tams)); 87 88 _top_at_mark_starts_base[idx] = new_tams; 89 _top_bitmaps[idx] = new_tams; 90 } 91 92 inline void ShenandoahMarkingContext::reset_top_at_mark_start(ShenandoahHeapRegion* r) { 93 _top_at_mark_starts_base[r->index()] = r->bottom(); 94 } 95 96 inline HeapWord* ShenandoahMarkingContext::top_at_mark_start(ShenandoahHeapRegion* r) const { 97 return _top_at_mark_starts_base[r->index()]; 98 } 99 100 inline void ShenandoahMarkingContext::reset_top_bitmap(ShenandoahHeapRegion* r) { 101 assert(is_bitmap_clear_range(r->bottom(), r->end()), 102 "Region " SIZE_FORMAT " should have no marks in bitmap", r->index()); 103 _top_bitmaps[r->index()] = r->bottom(); 104 } 105 106 #endif // SHARE_GC_SHENANDOAH_SHENANDOAHMARKINGCONTEXT_INLINE_HPP