x86-64: Optimize bzero
memset with zero as the value to set is by far the majority value (99%+
for Python3 and GCC).
bzero can be slightly more optimized for this case by using a zero-idiom
xor for broadcasting the set value to a register (vector or GPR).
Co-developed-by:
Noah Goldstein <goldstein.w.n@gmail.com>
Loading
-
mentioned in commit 7912236f
-
mentioned in commit 0fb88000
-
mentioned in commit 5cb63296
-
mentioned in commit 70509f9b
-
mentioned in commit de0cd691
-
mentioned in commit c394d7e1
-
mentioned in commit 2381bb05
-
mentioned in commit 30058694
-
mentioned in commit a5cd8efc
-
mentioned in commit 37f373e3
-
mentioned in commit a1336230
Please register or sign in to comment