Top


定義場所(file name)

hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.hpp

名前(function name)

inline bool PSParallelCompact::should_update_klass(klassOop k) {

本体部(body)

  {- -------------------------------------------
  (1) 引数で指定されたアドレス(k)が, Perm 領域の dense prefix 内にあれば (移動していないので) false.
      そうでなければ (移動しているので) true.
      ---------------------------------------- -}

      return ((HeapWord*) k) >= dense_prefix(perm_space_id);
    }

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