Searched refs:the_space (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A Dgeneration.inline.hpp33 return the_space()->is_in(p);
38 return the_space()->top_mark();
43 return the_space();
49 return the_space()->allocate(word_size);
55 return the_space()->par_allocate(word_size);
59 return the_space()->bottom_mark();
63 if (addr < the_space()->top()) return oop(addr)->size();
65 assert(addr == the_space()->top(), "non-block head arg to block_size");
66 return the_space()->_end - the_space()
[all...]
H A DcompactingPermGenGen.hpp190 if (addr < the_space()->top()) return true;
191 else if (addr < the_space()->end()) return false;
200 if (addr < the_space()->top()) {
203 else if (addr < the_space()->end()) {
204 assert(addr == the_space()->top(), "non-block head arg to block_size");
205 return the_space()->end() - the_space()->top();
H A Dgeneration.cpp554 return the_space()->used_region();
659 assert(the_space() != NULL, "shouldn't be NULL");
660 _last_gc = the_space()->bottom_mark();
662 the_space()->object_iterate_from(_last_gc, blk);
701 _last_gc = WaterMark(the_space(), the_space()->top());
706 the_space()->check_mangled_unused_area_complete();
712 the_space()->set_top_for_allocations();
716 the_space()->verify();
722 the_space()
[all...]
H A DcompactingPermGenGen.cpp404 the_space()->adjust_pointers();
409 the_space()->compact();
434 _rs->clear(MemRegion(the_space()->bottom(), the_space()->end()));
448 the_space()->verify();
H A Dgeneration.hpp690 ContiguousSpace* the_space() const { return _the_space; } function in class:OneContigSpaceCardGeneration
H A Ddump.cpp1245 csc.do_space(gen->the_space());

Completed in 165 milliseconds