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.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Event Timeline
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. |
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 |
Please add a comment here about why.