Searched refs:_virtual_space (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgenerationCounters.hpp44 VirtualSpace* _virtual_space; member in class:GenerationCounters
59 : _name_space(NULL), _current_size(NULL), _virtual_space(NULL) {}
H A DgenerationCounters.cpp66 : _virtual_space(v) {
76 : _virtual_space(NULL) {
81 assert(_virtual_space != NULL, "otherwise, override this method");
82 _current_size->set_value(_virtual_space->committed_size());
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsGenerationCounters.hpp47 assert(_virtual_space == NULL, "Only one should be in use");
H A DobjectStartArray.cpp57 if (!_virtual_space.initialize(backing_store, 0)) {
61 _raw_base = (jbyte*)_virtual_space.low_boundary();
101 if (!_virtual_space.expand_by(expand_by)) {
111 _virtual_space.shrink_by(shrink_by);
H A DparMarkBitMap.cpp68 _virtual_space = new PSVirtualSpace(rs, page_sz);
69 if (_virtual_space != NULL && _virtual_space->expand_by(_reserved_byte_size)) {
72 idx_t* map = (idx_t*)_virtual_space->reserved_low_addr();
82 if (_virtual_space != NULL) {
83 delete _virtual_space;
84 _virtual_space = NULL;
257 const idx_t* const beg = (const idx_t*)_virtual_space->committed_low_addr();
258 const idx_t* const end = (const idx_t*)_virtual_space->committed_high_addr();
H A DpsYoungGen.hpp43 PSVirtualSpace* _virtual_space; member in class:PSYoungGen
106 return _virtual_space->contains((void *)p);
116 PSVirtualSpace* virtual_space() const { return _virtual_space; }
H A DpsPermGen.cpp85 const size_t size_before = _virtual_space->committed_size();
120 size_before, _virtual_space->committed_size());
H A DvmStructs_parallelgc.hpp46 nonstatic_field(PSYoungGen, _virtual_space, PSVirtualSpace*) \
55 nonstatic_field(PSOldGen, _virtual_space, PSVirtualSpace*) \
H A DpsOldGen.hpp45 PSVirtualSpace* _virtual_space; // Controls mapping and unmapping of virtual mem member in class:PSOldGen
125 return _virtual_space->contains((void *)p);
135 PSVirtualSpace* virtual_space() const { return _virtual_space;}
H A DasPSOldGen.cpp70 _virtual_space = vs;
H A DobjectStartArray.hpp42 PSVirtualSpace _virtual_space; member in class:ObjectStartArray
H A DasPSYoungGen.cpp54 _virtual_space = vs;
60 _virtual_space = new PSVirtualSpaceHighToLow(rs, alignment);
61 if (!_virtual_space->expand_by(_init_gen_size)) {
H A DparMarkBitMap.hpp195 PSVirtualSpace* _virtual_space; member in class:ParMarkBitMap
210 _virtual_space = 0;
H A DpsOldGen.cpp67 _virtual_space = new PSVirtualSpace(rs, alignment);
68 if (!_virtual_space->expand_by(_init_gen_size)) {
H A DpsYoungGen.cpp46 _virtual_space = new PSVirtualSpace(rs, alignment);
102 _gen_counters = new PSGenerationCounters("new", 0, 3, _virtual_space);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsPermGen.cpp85 _gen_counters = new GenerationCounters(gen_name, 2, 1, &_virtual_space);
90 _virtual_space.reserved_size(),
H A DvmStructs_cms.hpp39 nonstatic_field(CMSBitMap, _virtual_space, VirtualSpace) \
H A DconcurrentMarkSweepGeneration.cpp201 HeapWord* bottom = (HeapWord*) _virtual_space.low();
202 HeapWord* end = (HeapWord*) _virtual_space.high();
347 _gen_counters = new GenerationCounters(gen_name, 1, 1, &_virtual_space);
350 _virtual_space.reserved_size(),
885 return MAX2(_virtual_space.uncommitted_size(), unsafe_max_alloc_nogc());
894 return free() + _virtual_space.uncommitted_size();
3361 if (_virtual_space.uncommitted_size() < (word_sz * HeapWordSize)) {
3389 if (_virtual_space.uncommitted_size() < refill_size_bytes) {
3416 bool result = _virtual_space.expand_by(bytes);
3420 heap_word_size(_virtual_space
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.cpp49 if (!_virtual_space.initialize(rs, initial_size)) {
55 MemRegion mangle_region((HeapWord*)_virtual_space.low(),
56 (HeapWord*)_virtual_space.high());
59 _reserved = MemRegion((HeapWord*)_virtual_space.low_boundary(),
60 (HeapWord*)_virtual_space.high_boundary());
105 _virtual_space.low_boundary(),
106 _virtual_space.high(),
107 _virtual_space.high_boundary());
512 if (_virtual_space.uncommitted_size() < byte_size) {
562 return _the_space->free() + _virtual_space
[all...]
H A DdefNewGeneration.cpp165 MemRegion cmr((HeapWord*)_virtual_space.low(),
166 (HeapWord*)_virtual_space.high());
184 uintx size = _virtual_space.reserved_size();
191 _gen_counters = new GenerationCounters("new", 0, 3, &_virtual_space);
224 uintx size = _virtual_space.committed_size();
241 char *eden_start = _virtual_space.low();
246 assert(to_end == _virtual_space.high(), "just checking");
268 HeapWord* limit = (HeapWord*) _virtual_space.high();
316 HeapWord* prev_high = (HeapWord*) _virtual_space.high();
317 bool success = _virtual_space
[all...]
H A DtenuredGeneration.cpp43 HeapWord* bottom = (HeapWord*) _virtual_space.low();
44 HeapWord* end = (HeapWord*) _virtual_space.high();
57 _gen_counters = new GenerationCounters(gen_name, 1, 1, &_virtual_space);
62 _virtual_space.reserved_size(),
H A DcompactingPermGenGen.cpp117 _gen_counters = new GenerationCounters(gen_name, 2, 1, &_virtual_space);
120 _virtual_space.reserved_size(),
H A Dgeneration.hpp104 VirtualSpace _virtual_space; member in class:Generation
211 return _virtual_space.uncommitted_size() == 0;
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.hpp68 VirtualSpace* virtual_space() { return &_virtual_space; }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.hpp61 VirtualSpace _virtual_space; // underlying the bit map member in class:VALUE_OBJ_CLASS_SPEC

Completed in 76 milliseconds

12