Java JIT コンパイラの高速化手法
首藤 一幸
2001年 8月 23日
夏のプログラミングシンポジウム
「プログラミングの鉄人 - プログラミングの技」
スライド:
shudo-prosym2001-shuJIT-slides.pdf
(PDF document, 848 KiB)
論文:
shudo-prosym2001-shuJIT.pdf
(PDF document, 199 KiB)
Back to
Publications のページ
首藤のページ
正誤表
31枚目「配列の境界チェックの改良」
(2003年4月12日追加)
:
誤: if (((unsigned)index - length) < 0) exception;
正: if ((length - (unsigned)index) <= 0) exception;