< prev index next >

src/share/vm/memory/tenuredGeneration.inline.hpp

Print this page
rev 7475 : imported patch cleanup

@@ -20,26 +20,21 @@
  * or visit www.oracle.com if you need additional information or have any
  * questions.
  *
  */
 
-#ifndef SHARE_VM_MEMORY_GENERATION_INLINE_HPP
-#define SHARE_VM_MEMORY_GENERATION_INLINE_HPP
+#ifndef SHARE_VM_MEMORY_TENUREDGENERATION_INLINE_HPP
+#define SHARE_VM_MEMORY_TENUREDGENERATION_INLINE_HPP
 
 #include "memory/genCollectedHeap.hpp"
 #include "memory/space.hpp"
 #include "memory/tenuredGeneration.hpp"
 
 bool TenuredGeneration::is_in(const void* p) const {
   return the_space()->is_in(p);
 }
 
-
-WaterMark TenuredGeneration::top_mark() {
-  return the_space()->top_mark();
-}
-
 CompactibleSpace*
 TenuredGeneration::first_compaction_space() const {
   return the_space();
 }
 

@@ -53,14 +48,10 @@
                                                      bool is_tlab) {
   assert(!is_tlab, "TenuredGeneration does not support TLAB allocation");
   return the_space()->par_allocate(word_size);
 }
 
-WaterMark TenuredGeneration::bottom_mark() {
-  return the_space()->bottom_mark();
-}
-
 size_t TenuredGeneration::block_size(const HeapWord* addr) const {
   if (addr < the_space()->top()) return oop(addr)->size();
   else {
     assert(addr == the_space()->top(), "non-block head arg to block_size");
     return the_space()->end() - the_space()->top();

@@ -69,6 +60,6 @@
 
 bool TenuredGeneration::block_is_obj(const HeapWord* addr) const {
   return addr < the_space()->top();
 }
 
-#endif // SHARE_VM_MEMORY_GENERATION_INLINE_HPP
+#endif // SHARE_VM_MEMORY_TENUREDGENERATION_INLINE_HPP
< prev index next >