Searched refs:ContiguousSpace (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DOffsetTableContigSpace.java31 public class OffsetTableContigSpace extends ContiguousSpace {
H A DDefNewGeneration.java71 public ContiguousSpace from() {
72 return (ContiguousSpace) VMObjectFactory.newObject(ContiguousSpace.class, fromSpaceField.getValue(addr));
75 public ContiguousSpace to() {
76 return (ContiguousSpace) VMObjectFactory.newObject(ContiguousSpace.class, toSpaceField.getValue(addr));
H A DEdenSpace.java34 functionality beyond ContiguousSpace.) */
36 public class EdenSpace extends ContiguousSpace {
H A DOneContigSpaceCardGeneration.java60 public ContiguousSpace theSpace() {
61 return (ContiguousSpace) VMObjectFactory.newObject(ContiguousSpace.class, theSpaceField.getValue(addr));
H A DContiguousSpace.java34 public class ContiguousSpace extends CompactibleSpace { class in inherits:CompactibleSpace
46 Type type = db.lookupType("ContiguousSpace");
51 public ContiguousSpace(Address addr) { method in class:ContiguousSpace
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.hpp46 ContiguousSpace* _space;
52 ContiguousSpace* s, GenerationCounters* gc);
76 ContiguousSpace* _space;
79 ContiguousSpaceUsedHelper(ContiguousSpace* space) : _space(space) { }
H A DspaceDecorator.hpp122 class ContiguousSpace;
126 ContiguousSpace* _sp;
128 ContiguousSpace* sp() { return _sp; }
134 GenSpaceMangler(ContiguousSpace* sp) : SpaceMangler(), _sp(sp) {}
H A DcSpaceCounters.cpp30 ContiguousSpace* s, GenerationCounters* gc) :
/openjdk7/hotspot/src/share/vm/memory/
H A Dspace.inline.hpp38 HeapWord* res = ContiguousSpace::allocate(size);
51 // ContiguousSpace::allocate asserts that either the allocating thread
53 // The best I (dld) could figure was to put a field in ContiguousSpace
58 HeapWord* res = ContiguousSpace::par_allocate(size);
H A Dspace.cpp260 ContiguousSpace::new_dcto_cl(OopClosure* cl,
284 ContiguousSpace::ContiguousSpace(): CompactibleSpace(), _top(NULL),
289 ContiguousSpace::~ContiguousSpace() {
293 void ContiguousSpace::initialize(MemRegion mr,
301 void ContiguousSpace::clear(bool mangle_space) {
307 bool ContiguousSpace::is_in(const void* p) const {
311 bool ContiguousSpace::is_free_block(const HeapWord* p) const {
316 ContiguousSpace
[all...]
H A DdefNewGeneration.hpp36 class ContiguousSpace;
134 ContiguousSpace* _from_space;
135 ContiguousSpace* _to_space;
217 ContiguousSpace* from() const { return _from_space; }
218 ContiguousSpace* to() const { return _to_space; }
H A DcompactingPermGenGen.hpp123 ContiguousSpace* space,
151 ContiguousSpace* unshared_space() const { return _the_space; }
H A Dfilemap.hpp128 bool map_space(int i, ReservedSpace rs, ContiguousSpace *space);
H A Dgeneration.hpp68 class ContiguousSpace;
674 ContiguousSpace* _the_space; // actual space holding objects
690 ContiguousSpace* the_space() const { return _the_space; }
696 ContiguousSpace* space) :
H A Dspace.hpp61 // - ContiguousSpace -- a compactible space in which all free space
303 // IF "this" is a ContiguousSpace, return it, else return NULL.
304 virtual ContiguousSpace* toContiguousSpace() {
791 class ContiguousSpace: public CompactibleSpace { class in inherits:CompactibleSpace
807 ContiguousSpace();
808 ~ContiguousSpace();
953 virtual ContiguousSpace* toContiguousSpace() {
997 // (ContiguousSpace and sub-classes).
1019 ContiguousSpaceDCTOC(ContiguousSpace* sp, OopClosure* cl,
1031 class EdenSpace : public ContiguousSpace {
[all...]
H A DblockOffsetTable.hpp44 class ContiguousSpace;
519 // that its underlying space is a ContiguousSpace, so that its "active"
539 void set_contig_space(ContiguousSpace* sp) { set_space((Space*)sp); }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/
H A DHeapRegion.java31 import sun.jvm.hotspot.memory.ContiguousSpace;
39 // as HeapRegion ultimately inherits from ContiguousSpace).
41 public class HeapRegion extends ContiguousSpace {
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.inline.hpp29 HeapWord* res = ContiguousSpace::allocate(size);
42 HeapWord* res = ContiguousSpace::allocate(size);
H A DvmStructs_g1.hpp62 declare_type(HeapRegion, ContiguousSpace) \
H A Dg1BlockOffsetTable.hpp55 class ContiguousSpace;
288 ContiguousSpace* _csp;
313 ContiguousSpace* csp() const { return _csp; }
482 // that its underlying space is a ContiguousSpace, so that its "active"
H A DheapRegion.hpp49 class ContiguousSpace;
153 class G1OffsetTableContigSpace: public ContiguousSpace {
382 return ContiguousSpace::par_allocate(word_size);
386 return ContiguousSpace::allocate(word_size);
H A DheapRegion.cpp551 ContiguousSpace::oop_since_save_marks_iterate##nv_suffix(cl); \
913 ContiguousSpace::initialize(mr, false, mangle_space);
920 ContiguousSpace::clear(mangle_space);
958 return ContiguousSpace::saved_mark_word();
973 ContiguousSpace::set_saved_mark();
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryPool.hpp159 ContiguousSpace* _space;
162 ContiguousSpacePool(ContiguousSpace* space, const char* name, PoolType type, size_t max_size, bool support_usage_threshold);
164 ContiguousSpace* space() { return _space; }
H A DmemoryService.hpp45 class ContiguousSpace;
109 static MemoryPool* add_space(ContiguousSpace* space,
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/
H A DHeapSummary.java85 ContiguousSpace eden = ((DefNewGeneration)gen).eden();
89 ContiguousSpace from = ((DefNewGeneration)gen).from();
93 ContiguousSpace to = ((DefNewGeneration)gen).to();
222 private void printSpace(ContiguousSpace space) {

Completed in 133 milliseconds

12