Top


定義場所(file name)

hotspot/src/share/vm/interpreter/templateInterpreter.cpp

名前(function name)

static inline void copy_table(address* from, address* to, int size) {

本体部(body)

  {- -------------------------------------------
  (1) メモリを素直にコピーするだけ
      ---------------------------------------- -}

      // Copy non-overlapping tables. The copy has to occur word wise for MT safety.
      while (size-- > 0) *to++ = *from++;
    }

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