This is an archive of the discontinued LLVM Phabricator instance.

[X86][Costmodel] Load/store i16 Stride=3 VF=4 interleaving costs
ClosedPublic

Authored by lebedev.ri on Oct 3 2021, 5:31 AM.

Details

Summary

The only sched models that for cpu's that support avx2
but not avx512 are: haswell, broadwell, skylake, zen1-3

For load we have:
https://godbolt.org/z/sP4j1173f - for intels Block RThroughput: =7.0; for ryzens, Block RThroughput: <=3.0
So pick cost of 7.

For store we have:
https://godbolt.org/z/sP4j1173f - for intels Block RThroughput: =6.0; for ryzens, Block RThroughput: <=2.0
So pick cost of 6.

I'm directly using the shuffling asm the llc produced,
without any manual fixups that may be needed
to ensure sequential execution.

Diff Detail