[llvm] [X86] Prevent APX NDD compression when it creates a partial write (PR #132051)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 01:27:23 PDT 2025
================
@@ -7229,6 +7252,18 @@ void X86InstrInfo::breakPartialRegDependency(
.addReg(Reg, RegState::Undef)
.addReg(Reg, RegState::Undef);
MI.addRegisterKilled(Reg, TRI, true);
+ } else if ((X86::GR16RegClass.contains(Reg) ||
+ X86::GR8RegClass.contains(Reg)) &&
+ X86II::hasNewDataDest(MI.getDesc().TSFlags)) {
+ // This case is only expected for NDD ops which appear to be partial
+ // writes, but are not due to the zeroing of the upper part. Here
+ // we add an implicit def of the superegister, which prevents
+ // CompressEVEX from converting this to a legacy form.
----------------
phoebewang wrote:
Did you check it with large applications like benchmark? I'm not sure if we can arbitrarily adding operand to a MI. Maybe add `-verify-machineinstrs` in the tests to check first.
https://github.com/llvm/llvm-project/pull/132051
More information about the llvm-commits
mailing list