JIT compiling a subset of Python to x86-64
1–10 of 19 posts
Re: JIT compiling a subset of Python to x86-64
#2Re: JIT compiling a subset of Python to x86-64
#3Re: JIT compiling a subset of Python to x86-64
#4Re: JIT compiling a subset of Python to x86-64
#5Oh, very interesting! This is somewhat similar to a hack project I did recently, but more dynamic -- going from bytecode and doing the assembly at runtime amps things up a bit! Mine works from a Python AST and is much more static, but it also supports quite a lot more Python syntax. http://benhoyt.com/writings/pyast64/
Re: JIT compiling a subset of Python to x86-64
#6Oh, very interesting! This is somewhat similar to a hack project I did recently, but more dynamic -- going from bytecode and doing the assembly at runtime amps things up a bit! Mine works from a Python AST and is much more static, but it also supports quite a lot more Python syntax. http://benhoyt.com/writings/pyast64/
Re: JIT compiling a subset of Python to x86-64
#7Related: https://github.com/Microsoft/Pyjion
Sadly it looks like it's stalled :(
Re: JIT compiling a subset of Python to x86-64
#8Related: https://github.com/Microsoft/Pyjion
Re: JIT compiling a subset of Python to x86-64
#9Re: JIT compiling a subset of Python to x86-64
#10Related: https://github.com/Microsoft/Pyjion
Also: https://www.python.org/dev/peps/pep-0523/