Previously I tried this and saw LLVM unable to transform this to fold
with memory operands such as spill slot rematerialization. However, it
clearly works as shown in this patch. We turn these into `cmpb $0,
<mem>` when useful for folding a memory operand without issue. This form
has no disadvantage compared te testb $-1, <mem>. So overall, this is
likely no worse and may be slightly smaller in some cases due to the
testb %reg, %reg form.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM