Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PerlでJVMをつくろう

 PerlでJVMをつくろう

2021 Japan.pm LT発表資料

HiroshiToriyabe

February 19, 2021
Tweet

More Decks by HiroshiToriyabe

Other Decks in Programming

Transcript

  1. 自己紹介 - とりやべ (@toricor)です - 娘2人 - 株式会社モバイルファクトリー 新卒4年目エンジニア -

    駅メモ!でいろいろ機能開発をしています - パフォーマンスチューニングが好きです
  2. JVM (Java Virtual Machine)をつくるとは - そもそもJVMとは - javacでコンパイルしたクラスファイル (.class)を読み取り実行する君 -

    JVMを実装するとは - To implement the Java Virtual Machine correctly, you need only be able to read the class file format and correctly perform the operations specified therein. (The Java Virtual Machine Specification 第2章冒頭より引用) - 「クラスファイルを読み取り、記述された操作を正しく実行できれば ok」 - 作りました => https://github.com/toricor/p5-jvmtiny