This is an archive of the discontinued LLVM Phabricator instance.

AMDGPU/GISel: Introduce custom legalization of G_MUL
ClosedPublic

Authored by nhaehnle on May 3 2022, 5:11 AM.

Details

Summary

The generic legalizer framework is still used to reduce the problem
to scalar multiplication with the bit size a multiple of 32.

Generating optimal code sequences for big integer multiplication is
somewhat tricky and has a number of target-specific intricacies:

  • The target has V_MAD_U64_U32 instructions that multiply two 32-bit factors and add a 64-bit accumulator. Most partial products should use this instruction.
  • The accumulator is mapped to consecutive 32-bit GPRs, and partial- product multiply-adds can feed the accumulator into each other directly. (The register allocator's support for that is somewhat limited, but that only matters for 128-bit integers and larger.)
  • OTOH, on some hardware, V_MAD_U64_U32 requires the accumulator to be stored in an even-aligned pair of GPRs. To avoid excessive register copies, it makes sense to compute odd partial products separately from even partial products (where a partial product src0[j0] * src1[j1] is "odd" if j0 + j1 is odd) and add both halves together as a final step.
  • We can combine G_MUL+G_ADD into a single cascade of multiply-adds.
  • The target can keep many carry-bits in flight simultaneously, so combining carries using G_UADDE is preferable over G_ZEXT + G_ADD.
  • Not addressed by this patch: When the factors are sign-extended, the V_MAD_I64_I32 instruction (signed version!) can be used.

It is difficult to address these points generically:

  1. Finding matching pairs of G_MUL and G_UMULH to find a wide

multiply is expensive. We could add a G_UMUL_LOHI generic instruction
and conditionally use that in the generic legalizer, but by itself
this wouldn't allow us to use the accumulation capability of
V_MAD_U64_U32. One could attempt to find matching G_ADD + G_UADDE
post-legalization, but this is also expensive.

  1. Similarly, making sense of the legalization outcome of a wide

pre-legalization G_MUL+G_ADD pair is extremely expensive.

  1. How could the generic legalizer possibly deal with the

particular idiosyncracy of "odd" vs. "even" partial products.

All this points in the direction of directly emitting an ideal code
sequence during legalization, but the generic legalizer should not
be burdened with such overly target-specific concerns. Hence, a
custom legalization.

Note that the implemented approach is different from that used by
SelectionDAG because narrowing of scalars works differently in
general. SelectionDAG iteratively cuts wide scalars into low and
high halves until a legal size is reached. By contrast, GlobalISel
does the narrowing in a single shot, which should be better for
compile-time and for the quality of the generated code.

This patch leaves three gaps open:

  1. When the factors are uniform, we should execute the multiplication on the SALU. Register bank mapping already ensures this.

    However, the resulting code sequence is not optimal because it doesn't fully use the carry-in capabilities of S_ADDC_U32. (V_MAD_U64_U32 doesn't have a carry-in.) It is very difficult to fix this after the fact, so we should really use a different legalization sequence in this case. Unfortunately, we don't have a divergence analysis and so cannot make that choice.

    (This only matters for 128-bit integers and larger.)
  1. Avoid unnecessary multiplies when sources are known to be zero- or sign-extended. The challenge is that the legalizer does not currently have access to GISelKnownBits.
  1. When the G_MUL is followed by a G_ADD, we should consider combining the two instructions into a single multiply-add sequence, to utilize the accumulator of V_MAD_U64_U32 fully. (Unless the multiply has multiple uses and the implied duplication of the multiply is an overall negative). However, this is also not true when the factors are uniform: in that case, it is generally better to *not* combine the two operations, so that the multiply can be done on the SALU.

    Again, we don't have a divergence analysis available and so cannot make an informed choice.

Diff Detail

Event Timeline

nhaehnle created this revision.May 3 2022, 5:11 AM
Herald added a project: Restricted Project. · View Herald TranscriptMay 3 2022, 5:11 AM
nhaehnle requested review of this revision.May 3 2022, 5:11 AM
Herald added a project: Restricted Project. · View Herald TranscriptMay 3 2022, 5:11 AM
Herald added a subscriber: wdng. · View Herald Transcript

I do plan to look into handling zero-/sign-extended sources soon. My current thinking is to make GISelKnownBits available during legalization. Are there any concerns with that / does anybody have a better idea?

nhaehnle updated this revision to Diff 426659.May 3 2022, 5:20 AM

Comment changes

I do plan to look into handling zero-/sign-extended sources soon. My current thinking is to make GISelKnownBits available during legalization. Are there any concerns with that / does anybody have a better idea?

No, this should be there. I've meant to add it many times

arsenm accepted this revision.May 16 2022, 3:50 PM
arsenm added inline comments.
llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-mad_64_32.mir
2 ↗(On Diff #426659)

I don't understand why this test change since you only touched the legalizer

This revision is now accepted and ready to land.May 16 2022, 3:50 PM
nhaehnle marked an inline comment as done.Jun 9 2022, 1:03 AM
nhaehnle added inline comments.
llvm/test/CodeGen/AMDGPU/GlobalISel/regbankselect-mad_64_32.mir
2 ↗(On Diff #426659)

Looks like this was a mistake during rebase.

This revision was landed with ongoing or failed builds.Jun 9 2022, 4:39 AM
This revision was automatically updated to reflect the committed changes.
nhaehnle marked an inline comment as done.
Allen added a subscriber: Allen.Aug 11 2022, 5:59 AM
llvm/test/CodeGen/AMDGPU/GlobalISel/sdivrem.ll