[all-commits] [llvm/llvm-project] 7f648d: Reland "[X86][MC] Always emit `rep` prefix for `bsf`"
Phoebe Wang via All-commits
all-commits at lists.llvm.org
Thu Aug 4 19:26:41 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 7f648d27a85a98fa077f0968dea081821627d477
https://github.com/llvm/llvm-project/commit/7f648d27a85a98fa077f0968dea081821627d477
Author: Phoebe Wang <phoebe.wang at intel.com>
Date: 2022-08-05 (Fri, 05 Aug 2022)
Changed paths:
M llvm/lib/Target/X86/X86MCInstLower.cpp
M llvm/test/CodeGen/X86/clz.ll
M llvm/test/CodeGen/X86/peephole-na-phys-copy-folding.ll
M llvm/test/CodeGen/X86/stack-folding-x86_64.ll
Log Message:
-----------
Reland "[X86][MC] Always emit `rep` prefix for `bsf`"
`BMI` new instruction `tzcnt` has better performance than `bsf` on new
processors. Its encoding has a mandatory prefix '0xf3' compared to
`bsf`. If we force emit `rep` prefix for `bsf`, we will gain better
performance when the same code run on new processors.
GCC has already done this way: https://c.godbolt.org/z/6xere6fs1
Fixes #34191
Reviewed By: craig.topper, skan
Differential Revision: https://reviews.llvm.org/D130956
More information about the All-commits
mailing list