When streaming mode is enabled, lower some operations and disable some code paths to force generating code compatible to streaming mode.
Add testing files for shifts, build_vector, concat, extract_subvector, extract_vector_elt, and shuffle.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
12110 | Drive by comment: we don't need to pass Subtarget->forceStreamingCompatibleSVE() but can just query that inside useSVEForFixedLengthVectorVT? |
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
12110 | I think we still need to pass it, because useSVEForFixedLengthVectorVT is used in many places, some of them don't need the flag to be enabled. |
Update by changes of parent patch.
While lowering ISD::load remove enabling LowerFixedLengthVectorLoadToSVE,
no need for it, as zero_Extend is custom-lowered.
Previously, LowerLOAD() creates zero_Extend node, which cause invalid generated code,
but now, the zero_extend node is custom-lowered, which cause valid generated code.
Hi @hassnaa-arm, I think you have the tests the wrong way around. The tests from D136147 should be part of this patch, because this is the patch where you're implementing the lowering of the operations you're testing in D136147.
After this patch, you get the masked/truncating/extending load/store operations "for free", so the tests for those operations could be moved to a separate test-only patch like D136147.
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
1394 | It should be able to use standard scalar instructions for v1i64 in streaming-compatible mode, so this one can be removed from the list. | |
1397 | Most scalar FP operations are valid in streaming mode, so we probably don't need to do anything custom for this type. | |
1608–1610 | nit: Perhaps it doesn't lead to an error, but these operations only operate on integers, so should be guarded by: if (VT.isInteger()) { ... } | |
12281 | nit: rather than wrapping this in another condition, can you just add it to the existing condition with && !Subtarget->forceStreamingCompatibleSVE() ? | |
llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | ||
3049–3050 | nit: Can you change this into: let Predicates = [NotInStreamingSVEMode], AddedComplexity = 1 in { def : Pat<...> .. } let Predicates = [NotInStreamingSVEMode] in { def : Pat<..> ... } Rather than indenting? | |
llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-masked-store.ll | ||
312 ↗ | (On Diff #468153) | Can you remove all tests that are larger than "twice the size" of a 128bit vector (v32f32 is 8x the size, I'm not sure what value that adds for the testing of this functionality) |
Add testing files for shifts, build_vector, concat, extract_subvector, extract_vector_elt, and shuffle.
Hi @hassnaa-arm, I think it's almost there! Most of the tests look good to me. I just had a few minor comments ...
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
11373 | I don't think you need to pass in the Subtarget here. In the code below you can just do if (VT.isFixedLengthVector() && DAG.getSubtarget<AArch64Subtarget>().forceStreamingCompatibleSVE() return SDValue(); | |
11424 | Same comment as above for tryAdvSIMDModImm32 | |
13997 | nit: The comment can probably be formatted better I think so that you use up 80 chars, i.e.: // Skip if streaming compatible SVE is enabled, because it generates invalid // code in streaming mode when SVE length is not specified. | |
15735 | Again, you can avoid passing in the subtarget here if you make the changes to tryAdvSIMDModImm32 and tryAdvSIMDModImm16. | |
llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td | ||
3044 | When we guard something by a predicate we normally add a comment on the final brace '}' to make it easy to see, i.e. something like: } // End NotInStreamingSVEMode | |
3058 | } // End NotInStreamingSVEMode | |
llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-concat.ll | ||
10 ↗ | (On Diff #470094) | I don't think we need to have vscale_range(2,0) on these tests, right? We want streaming SVE to work for vector lengths. |
llvm/test/CodeGen/AArch64/sve-streaming-mode-fixed-length-extract-vector-elt.ll | ||
17 ↗ | (On Diff #470094) | nit: I think in all these tests there should only be 2 spaces at the start of the IR, i.e. %r = extractelement <2 x half> %op1, i64 1 etc. |
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
22396–22397 | As with the above change can this be V.getValueType().isFixedLengthVector() && isTypeLegal(V.getValueType()) &&? | |
llvm/test/CodeGen/AArch64/sve-streaming-fixed-length-int-shifts.ll | ||
1–5 ↗ | (On Diff #471171) | Please rename this file sve-streaming-mode-fixed-length-int-shifts.ll to match the same format as the others. |
Rename sve-streaming-fixed-length-int-shifts.ll to sve-streaming-mode-fixed-length-int-shifts.ll
LGTM as well (please address nit before submitting)
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
22396 | nit: Does this cross the 80-character limit? (please use clang-format to be sure) |
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
1614 | nit: I only just spot this now in one of your other patches, but ISD::AND should also be guarded by VT.isInteger(). |
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
1614 | Although not wrong it doesn't really matter as legalisation is smart enough to not care about the operation action for types that make no sense. We rely on this in addTypeForFixedLengthSVE where the type is only considered when handling extend-loads/truncating-store plus the odd compare. |
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp | ||
---|---|---|
1614 | In that case it's probably better to remove the condition entirely. |
It should be able to use standard scalar instructions for v1i64 in streaming-compatible mode, so this one can be removed from the list.