Explore >> Select a destination


You are here

www.pypy.org
| | bernsteinbear.com
7.7 parsecs away

Travel
| | This is a cross-post from Max Bernstein from his excellent blog where he writes about programming languages, compilers, optimizations, virtual machines. He's looking for a (dynamic language runtime or
| | blog.pyston.org
13.3 parsecs away

Travel
| | Creating an implementation for a dynamic language using just in time compilation (JIT)techniques involves a lot of compromisesmainly between complexity of the implementation, speed, warm-up time and memory usage. Especially speed is a difficult trade-off because it's very easy to end-up spending more time optimizing a piece of code and emitting the assembly than we...
| | stefan-marr.de
15.9 parsecs away

Travel
| | A comparative study of abstract-syntax-tree and bytecode interpreters on top of meta-compilation systems.
| | akaptur.github.com
97.8 parsecs away

Travel
| Last Thursday I gave a lightning talk at Hacker School about the peephole optimizer in Python. A "peephole optimization" is a compiler ...