Top


定義場所(file name)

hotspot/src/share/vm/memory/generation.cpp

名前(function name)

void Generation::compact() {

本体部(body)

  {- -------------------------------------------
  (1) Generation 中の全ての CompactibleSpace に対して CompactibleSpace::compact() を呼び出すだけ.
      ---------------------------------------- -}

      CompactibleSpace* sp = first_compaction_space();
      while (sp != NULL) {
        sp->compact();
        sp = sp->next_compaction_space();
      }
    }

This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.