pyhamburg / talks

Talks are proposed, discussed and scheduled here
8 stars 1 forks source link

RPython, the framework used to create PyPy #4

Open brakhane opened 5 years ago

brakhane commented 5 years ago

Estimated duration: 1 hour

RPython is the framework implemented and used by the PyPy project to create interpreters for dynamic languages with built in JIT support. It can also be used to implement other languages like Ruby.

I want to talk about how RPython can be used to create a compiled executable, and also how Just-In-Time compilation works (and why it's so difficult in dynamic languages), and how RPython manages to implement Just-In-Time compilation.

Maybe we will even implement a JITed interpreter for a tiny toy language.