This is an archive of the discontinued LLVM Phabricator instance.

AArch64: PAC: Do not attempt ICP on authenticating calls.
Needs ReviewPublic

Authored by pcc on Sep 30 2022, 4:43 PM.

Details

Reviewers
ab
tejohnson
Summary

Not only would the check that we would produce be incorrect since it
would not account for the fact that the function pointer would be signed,
we would also end up producing invalid IR as the call on the direct call
branch would have a ptrauth operand bundle. Therefore, do not ICP these
calls for now.

Diff Detail

Event Timeline

pcc created this revision.Sep 30 2022, 4:43 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 30 2022, 4:43 PM
pcc requested review of this revision.Sep 30 2022, 4:43 PM
Herald added a project: Restricted Project. · View Herald TranscriptSep 30 2022, 4:43 PM

The change itself looks fine to me, although needs a comment. But this would be better to test in llvm/test/Transforms/PGOProfile (see the icp_* and indirect_call_promotion* tests in that directory). The SampleProfile tests seem more geared towards specifically testing the SamplePGO matching related issues, and this is a more generic ICP fix. Thus the tests in PGOProfile don't tend to use a separate input file with the profile, rather the profile is already embedded in the IR with VP metadata.

llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
388

Please add a comment here about why.

ab added a comment.Oct 20 2022, 6:58 AM

To make sure I follow: would it make sense to have the legality check compare the ptrauth bits, and if they match, remove the bundle and promote? We'd have to pass the pointer (not the Function) around. And I don't see how we'd get a signed pointer in the SampleProfile case, so we wouldn't promote there anyway (without a much more interesting target check at least?) But it seems like the other users would generate a direct ptrauth-bundle call to ptrauth-signed target; InstCombine should handle that.

But in the meantime this does seem reasonable, though I'll defer to Teresa on tests.

llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
389