--- old/src/share/vm/memory/tenuredGeneration.hpp 2014-12-05 16:00:47.401529274 +0100 +++ new/src/share/vm/memory/tenuredGeneration.hpp 2014-12-05 16:00:47.329529277 +0100 @@ -43,8 +43,6 @@ protected: ContiguousSpace* _the_space; // actual space holding objects - WaterMark _last_gc; // watermark between objects allocated before - // and after last GC. GenerationCounters* _gen_counters; CSpaceCounters* _space_counters; @@ -104,10 +102,6 @@ virtual inline HeapWord* allocate(size_t word_size, bool is_tlab); virtual inline HeapWord* par_allocate(size_t word_size, bool is_tlab); - // Accessing marks - inline WaterMark top_mark(); - inline WaterMark bottom_mark(); - #define TenuredGen_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \ void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl); TenuredGen_SINCE_SAVE_MARKS_DECL(OopsInGenClosure,_v)