Python cryptography, Rust, and Gentoo
Python cryptography, Rust, and Gentoo
Posted Feb 12, 2021 4:21 UTC (Fri) by roc (subscriber, #30627)In reply to: Python cryptography, Rust, and Gentoo by zev
Parent article: Python cryptography, Rust, and Gentoo
Memory accesses are much slower on modern machines relative to other operations, so it is more important than it used to be to avoid redundant loads and stores. Thus, alias analysis has become more important to optimization, and C compilers more aggressive about exploiting whatever assumptions they can get away with (e.g. type-based alias analysis).
