Top


定義場所(file name)

hotspot/src/share/vm/runtime/interfaceSupport.hpp

説明(description)

// QUICK_ENTRY routines behave like ENTRY but without a handle mark

名前(function name)

#define __QUICK_ENTRY(result_type, header, thread)                   \

本体部(body)

  {- -------------------------------------------
  (1) (トレース出力)
      ---------------------------------------- -}

      TRACE_CALL(result_type, header)                                    \

  {- -------------------------------------------
  (1) (変数宣言など)
      ---------------------------------------- -}

      debug_only(NoHandleMark __hm;)                                     \
      Thread* THREAD = thread;                                           \

  {- -------------------------------------------
  (1) (以降で, 実際の関数の処理が行われる)
      ---------------------------------------- -}

      /* begin of body */

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