On Wed, Jul 20, 2022 at 8:54 AM Hongtao Liu wrote: > > On Wed, Jul 20, 2022 at 2:18 PM Uros Bizjak wrote: > > > > On Wed, Jul 20, 2022 at 8:14 AM Uros Bizjak wrote: > > > > > > On Wed, Jul 20, 2022 at 4:37 AM Hongtao Liu wrote: > > > > > > > > On Tue, Jul 19, 2022 at 5:37 PM Uros Bizjak wrote: > > > > > > > > > > On Tue, Jul 19, 2022 at 8:56 AM Hongtao Liu wrote: > > > > > > > > > > > > On Tue, Jul 19, 2022 at 2:35 PM Uros Bizjak via Gcc-patches > > > > > > wrote: > > > > > > > > > > > > > > On Tue, Jul 19, 2022 at 8:07 AM liuhongt wrote: > > > > > > > > > > > > > > > > And split it after reload. > > > > > > > > > > > > > > > > > You will need ix86_binary_operator_ok insn constraint here with > > > > > > > > > corresponding expander using ix86_fixup_binary_operands_no_copy to > > > > > > > > > prepare insn operands. > > > > > > > > Split define_expand with just register_operand, and allow > > > > > > > > memory/immediate in define_insn, assume combine/forwprop will do optimization. > > > > > > > > > > > > > > But you will *ease* the job of the above passes if you use > > > > > > > ix86_fixup_binary_operands_no_copy in the expander. > > > > > > for -m32, it will hit ICE in > > > > > > Breakpoint 1, ix86_fixup_binary_operands_no_copy (code=XOR, > > > > > > mode=E_V4QImode, operands=0x7fffffffa970) a > > > > > > /gcc/config/i386/i386-expand.cc:1184 > > > > > > 1184 rtx dst = ix86_fixup_binary_operands (code, mode, operands); > > > > > > (gdb) n > > > > > > 1185 gcc_assert (dst == operands[0]); -- here > > > > > > (gdb) > > > > > > > > > > > > the original operands[0], operands[1], operands[2] are below > > > > > > (gdb) p debug_rtx (operands[0]) > > > > > > (mem/c:V4QI (plus:SI (reg/f:SI 77 virtual-stack-vars) > > > > > > (const_int -8220 [0xffffffffffffdfe4])) [0 MEM > > > > > unsigned char> [(unsigned char *)&tmp2 + 4B]+0 S4 A32]) > > > > > > $1 = void > > > > > > (gdb) p debug_rtx (operands[1]) > > > > > > (subreg:V4QI (reg:SI 129) 0) > > > > > > $2 = void > > > > > > (gdb) p debug_rtx (operands[2]) > > > > > > (subreg:V4QI (reg:SI 98 [ _46 ]) 0) > > > > > > $3 = void > > > > > > (gdb) > > > > > > > > > > > > since operands[0] is mem and not equal to operands[1], > > > > > > ix86_fixup_binary_operands will create a pseudo register for dst. and > > > > > > then hit ICE. > > > > > > Is this a bug or assumed? > > > > > > > > > > You will need ix86_expand_binary_operator here. > > > > It will swap memory operand from op1 to op2 and hit ICE for unrecognized insn. > > > > > > > > What about this? > > > > > > Still no good... You are using commutative operands, so the predicate > > > of operand 2 should also allow memory. So, the predicate should be > > > nonimmediate_or_x86_64_const_vector_operand. The intermediate insn > > > pattern should look something like *_1, but with > > > added XMM and MMX reg alternatives instead of mask regs. > > > > Alternatively, you can use UNKNOWN operator to prevent > > canonicalization, but then you should not use commutative constraint > > in the intermediate insn. I think this is the best solution. > Like this? Please check the attached (lightly tested) patch that keeps commutative operands. Uros.