hotspot/src/share/vm/interpreter/templateInterpreter.cpp
static inline void copy_table(address* from, address* to, int size) {
{- -------------------------------------------
(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.