blob: 0089bf5b2c4e00257e6815339d616e287e9913c2 [file] [log] [blame]
/*
* Copyright (c) 2016, 2018, Red Hat, Inc. All rights reserved.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#ifndef SHARE_VM_GC_SHENANDOAH_SHENANDOAHCOLLECTIONSET_HPP
#define SHARE_VM_GC_SHENANDOAH_SHENANDOAHCOLLECTIONSET_HPP
#include "memory/allocation.hpp"
#include "gc/shenandoah/shenandoahHeap.hpp"
#include "gc/shenandoah/shenandoahHeapRegion.hpp"
#include "gc/shenandoah/shenandoahPadding.hpp"
class ShenandoahCollectionSet : public CHeapObj<mtGC> {
friend class ShenandoahHeap;
private:
size_t const _map_size;
size_t const _region_size_bytes_shift;
ReservedSpace _map_space;
char* const _cset_map;
// Bias cset map's base address for fast test if an oop is in cset
char* const _biased_cset_map;
ShenandoahHeap* const _heap;
size_t _garbage;
size_t _used;
size_t _region_count;
shenandoah_padding(0);
volatile jint _current_index;
shenandoah_padding(1);
public:
ShenandoahCollectionSet(ShenandoahHeap* heap, ReservedSpace space, char* heap_base);
// Add region to collection set
void add_region(ShenandoahHeapRegion* r);
// MT version
ShenandoahHeapRegion* claim_next();
// Single-thread version
ShenandoahHeapRegion* next();
size_t count() const { return _region_count; }
bool is_empty() const { return _region_count == 0; }
void clear_current_index() {
_current_index = 0;
}
inline bool is_in(ShenandoahHeapRegion* r) const;
inline bool is_in(size_t region_idx) const;
inline bool is_in(oop obj) const;
inline bool is_in_loc(void* loc) const;
void print_on(outputStream* out) const;
size_t used() const { return _used; }
size_t garbage() const { return _garbage; }
void clear();
private:
char* map_address() const {
return _cset_map;
}
char* biased_map_address() const {
return _biased_cset_map;
}
};
#endif //SHARE_VM_GC_SHENANDOAH_SHENANDOAHCOLLECTIONSET_HPP