Top


定義場所(file name)

hotspot/src/share/vm/memory/generation.inline.hpp

名前(function name)

HeapWord* OneContigSpaceCardGeneration::allocate(size_t word_size,
                                                 bool is_tlab) {

本体部(body)

  {- -------------------------------------------
  (1) (assert)
      ---------------------------------------- -}

      assert(!is_tlab, "OneContigSpaceCardGeneration does not support TLAB allocation");

  {- -------------------------------------------
  (1) ContiguousSpace::allocate() で確保を行い, 結果をリターン.
      ---------------------------------------- -}

      return the_space()->allocate(word_size);
    }

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