|
You are here |
bernsteinbear.com | ||
| | | | |
v8.dev
|
|
| | | | | V8's newest compiler, Maglev, improves performance while reducing power consumption | |
| | | | |
cfallin.org
|
|
| | | | | [AI summary] The article discusses the development of an Ahead-of-Time (AOT) compiler for JavaScript, leveraging precompiled inline-cache (IC) stubs. By moving runtime type binding to indirect calls, the compiler can generate static code, enabling full AOT compilation. This approach achieves significant performance improvements, with a 2.77x geometric mean speedup on various benchmarks. The article also explores further optimizations through profile-guided inlining, and compares this method with other AOT approaches like Hopc's type inference. The potential for future enhancements and the use of compiler backends derived from interpreters are also highlighted. | |
| | | | |
alexandrnikitin.github.io
|
|
| | | | | Hoisting is a compiler optimization that moves loop-invariant code out of the loop. The post reveals hoisting in .NET and explains what code will be optimized and why. | |
| | | | |
pythonspeed.com
|
|
| | | Python's Global Interpreter Lock (GIL) stops threads from running in parallel or concurrently. Learn how to determine impact of the GIL on your code. | ||