This is an archive of the discontinued LLVM Phabricator instance.

[docs][RISCV] Document status of scalar crypto extensions
ClosedPublic

Authored by reames on Sep 6 2022, 1:05 PM.

Details

Summary

This is based on a somewhat subjective review of the in-tree support, and where I thought further work was needed before I'd consider these "done".

Diff Detail

Event Timeline

reames created this revision.Sep 6 2022, 1:05 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 6 2022, 1:05 PM
reames requested review of this revision.Sep 6 2022, 1:05 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 6 2022, 1:05 PM
craig.topper added inline comments.Sep 6 2022, 1:19 PM
llvm/docs/RISCVUsage.rst
47

Can we link this to the note?

138

Can you file an issue for what is missing?

reames added inline comments.Sep 6 2022, 1:34 PM
llvm/docs/RISCVUsage.rst
138

This wasn't a deep dive.

For Zbkb, I had observed we could use PACK variants for building constants or build_vectors of small vector types. Not clear how much we can/should push here.

For Zbkx, we appear to have no pattern matching beyond intrinsics.

craig.topper added inline comments.Sep 6 2022, 1:42 PM
llvm/docs/RISCVUsage.rst
138

We could use PACK for assembling pieces of unaligned loads too.

Zbkx pattern matching is missing and may be hard to do robustly. Maybe we if we did something like recognizeBSwapOrBitReverseIdiom where we collect the provenance of every bit. But that could still be fragile if it is proceeded by any extra bit operations.

frasercrmck added inline comments.Sep 6 2022, 11:54 PM
llvm/docs/RISCVUsage.rst
47

+1, and also for the existing Zve32x/Zve32f/Zvl32b notes?

reames added a comment.Sep 8 2022, 2:07 PM

Do folks mind if we do the link piece in a separate un-reviewed change? That's mostly a fight with rst formatting change, and I'd like to separate it from this.

Do folks mind if we do the link piece in a separate un-reviewed change? That's mostly a fight with rst formatting change, and I'd like to separate it from this.

That's ok with me.

This revision is now accepted and ready to land.Sep 8 2022, 3:19 PM
This revision was automatically updated to reflect the committed changes.
reames added a comment.EditedSep 8 2022, 4:20 PM

Do folks mind if we do the link piece in a separate un-reviewed change? That's mostly a fight with rst formatting change, and I'd like to separate it from this.

That's ok with me.

Hm, I don't think this is happening. I tried playing with links, and it breaks rendering of the table. I have absolutely no idea why. If anyone else wants to play with this, you can see the result and the tweaked source here: https://github.com/preames/public-notes/blob/master/RISCVUsage.rst

Edit: After much banging of head into bring wall, I think I got this working in c6d304af.