Explore >> Select a destination


You are here

bytecodealliance.org
| | alexandrnikitin.github.io
5.5 parsecs away

Travel
| | 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.
| | lwn.net
5.6 parsecs away

Travel
| | Ken Jin welcomed EuroPython 2025 attendees to his talk entitled 'Building a new tail-calling in [...]
| | wingolog.org
5.5 parsecs away

Travel
| | wingolog: article: a baseline compiler for guile
| | gpfault.net
24.8 parsecs away

Travel
| [AI summary] The provided text is a detailed explanation of how to write a simple 64-bit Windows application in assembly language that calls the ExitProcess function from the KERNEL32.DLL library. It covers the following key topics: 1. **Memory and Register Basics**: Explains how memory and registers work in 64-bit Windows, including the use of the stack pointer (RSP), registers like RCX, RDX, R8, and R9 for passing arguments, and the importance of stack alignment for performance. 2. **Calling Conventions**: Details the 64-bit Windows calling convention, including how the first four integer or pointer arguments are passed in registers (RCX, RDX, R8, R9), how additional arguments are passed on the stack, and the requirement for the stack to be aligned to ...