Every story tagged Assembly Language, curated for CIOs and IT leaders — ranked by source credibility, engagement, and freshness.
2 stories · open in the command center
This technical article explains how a low-level CPU instruction idiom (XOR) became the industry standard for register zeroing despite functionally equivalent alternatives, illustrating how incremental advantages and social proof create technology standards. For IT leaders, this demonstrates how early architectural decisions and compiler choices cascade across entire ecosystems, making standardization lock-in difficult to reverse even when technically superior alternatives emerge. Organizations should recognize that such de facto standards—whether in code practices, infrastructure choices, or vendor preferences—become self-reinforcing and require significant coordination to change.
This technical article explores low-level assembly implementation of standard C string functions (memcpy, memcmp, etc.) using x86-64 string instructions and SIMD. While highly detailed for systems programmers, this represents legacy optimization techniques that modern compilers already handle automatically through built-in functions. For IT organizations, this type of manual optimization is rarely necessary or cost-effective, as compiler technologies and standard libraries provide well-optimized implementations that balance performance across diverse hardware platforms.