Searched refs:_space (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.hpp46 ContiguousSpace* _space; member in class:CSpaceCounters
59 _capacity->set_value(_space->capacity());
63 _used->set_value(_space->used());
76 ContiguousSpace* _space; member in class:ContiguousSpaceUsedHelper
79 ContiguousSpaceUsedHelper(ContiguousSpace* space) : _space(space) { }
82 return _space->used();
H A DcSpaceCounters.cpp31 _space(s) {
53 _space->capacity(), CHECK);
57 new ContiguousSpaceUsedHelper(_space),
62 _space->capacity(), CHECK);
H A DmutableNUMASpace.hpp68 MutableSpace* _space; member in class:MutableNUMASpace::LGRPSpace
94 _space = new MutableSpace(alignment);
98 delete _space;
135 MutableSpace* space() const { return _space; }
/openjdk7/hotspot/src/share/vm/memory/
H A Dwatermark.hpp40 Space* _space; member in class:VALUE_OBJ_CLASS_SPEC
43 Space* space() const { return _space; }
44 void set_space(Space* s) { _space = s; }
49 WaterMark(Space* s, HeapWord* p) : _space(s), _point(p) {};
50 WaterMark() : _space(NULL), _point(NULL) {};
H A Dfilemap.hpp74 } _space[CompactingPermGenGen::n_regions]; member in struct:FileMapInfo::FileMapHeader
110 size_t space_capacity(int i) { return _header._space[i]._capacity; }
111 char* region_base(int i) { return _header._space[i]._base; }
H A Dfilemap.cpp211 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
222 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[region];
304 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
324 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[0];
354 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
375 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
404 struct FileMapInfo::FileMapHeader::space_info* si = &_header._space[i];
446 SharedReadOnlySize = _header._space[0]._capacity;
447 SharedReadWriteSize = _header._space[1]._capacity;
448 SharedMiscDataSize = _header._space[
[all...]
H A Ddump.cpp438 OffsetTableContigSpace* _space; member in class:MoveMarkedObjects
443 _space = space;
453 oop sh_obj = (oop)_space->allocate(s);
H A Dspace.hpp383 CompactPoint(Generation* _gen, CompactibleSpace* _space, argument
385 gen(_gen), space(_space), threshold(_threshold) {}
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweepDecorator.hpp42 MutableSpace* _space; member in class:PSMarkSweepDecorator
55 _space(space), _start_array(start_array),
67 MutableSpace* space() { return _space; }
H A DpsVirtualspace.hpp106 const PSVirtualSpace* const _space; member in class:PSVirtualSpace::PSVirtualSpaceVerifier
108 PSVirtualSpaceVerifier(PSVirtualSpace* space): _space(space) {
109 _space->verify();
111 ~PSVirtualSpaceVerifier() { _space->verify(); }
H A DpsParallelCompact.hpp173 MutableSpace* space() const { return _space; }
194 void set_space(MutableSpace* s) { _space = s; }
200 void publish_new_top() const { _space->set_top(_new_top); }
203 MutableSpace* _space; member in class:SpaceInfo
/openjdk7/hotspot/src/share/vm/services/
H A DpsMemoryPool.hpp55 MutableSpace* _space; member in class:EdenMutableSpacePool
64 MutableSpace* space() { return _space; }
H A DmemoryPool.hpp159 ContiguousSpace* _space; member in class:ContiguousSpacePool
164 ContiguousSpace* space() { return _space; }
193 CompactibleFreeListSpace* _space; member in class:CompactibleFreeListSpacePool
202 size_t used_in_bytes() { return _space->used(); }
H A DpsMemoryPool.cpp75 _gen(gen), _space(space) {
81 size_t committed = _space->capacity_in_bytes();
H A DmemoryPool.cpp183 support_usage_threshold), _space(space) {
189 size_t committed = _space->capacity();
218 support_usage_threshold), _space(space) {
224 size_t committed = _space->capacity();
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.hpp140 CompactibleFreeListSpace* _space; // the space to which this belongs member in class:VALUE_OBJ_CLASS_SPEC
157 _tracking(0), _space(NULL),
174 void setSpace(CompactibleFreeListSpace* sp) { _space = sp; }
175 CompactibleFreeListSpace* space() const { return _space; }
H A DconcurrentMarkSweepGeneration.hpp1575 CompactibleFreeListSpace* _space; member in class:MarkFromDirtyCardsClosure
1587 _space(space),
1599 _space(space),
1605 void set_space(CompactibleFreeListSpace* space) { _space = space; }
H A DconcurrentMarkSweepGeneration.cpp7950 _space->object_iterate_mem(mr, &_scan_cl);
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp534 } _space[NUM_SHARED_MAPS]; // was _space[CompactingPermGenGen::n_regions]; member in struct:FileMapHeader
696 pheader->_space[m]._file_offset, pheader->_space[m]._base,
697 pheader->_space[m]._used, pheader->_space[m]._read_only);
1102 if (pheader->_space[m]._read_only) {
1103 jlong baseAddress = (jlong) (uintptr_t) pheader->_space[m]._base;
1104 size_t usedSize = pheader->_space[m]._used;
1118 off_t offset = pheader->_space[
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_core.c237 } _space[NUM_SHARED_MAPS]; // was _space[CompactingPermGenGen::n_regions]; member in struct:FileMapHeader
377 if (header._space[m]._read_only) {
378 base = (uintptr_t) header._space[m]._base;
381 add_class_share_map_info(ph, (off_t) header._space[m]._file_offset,
382 base, (size_t) header._space[m]._used);
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_core.c236 } _space[NUM_SHARED_MAPS]; // was _space[CompactingPermGenGen::n_regions]; member in struct:FileMapHeader
377 if (header._space[m]._read_only) {
378 base = (uintptr_t) header._space[m]._base;
381 add_class_share_map_info(ph, (off_t) header._space[m]._file_offset,
382 base, (size_t) header._space[m]._used);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp627 nonstatic_field(WaterMark, _space, Space*) \

Completed in 317 milliseconds