Pointer authentication (PAC) for clang#60
Open
mingxwa wants to merge 2 commits into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
NOTE: This is PR 1 of n for the upcoming v5 major release, targeting the
feature/v5branch. Once the feature branch is stable, it will be merged intomain. This PR introduces critical ABI-breaking changes.Changes
detail/facade_meta_traits.h, which introduces two new public APIs:compact_facade_meta_traitsandflat_facade_meta_traits. These are metadata policy in v5. Currently onlycompact_facade_meta_traitsis used fromcore.h. Later this will become a new dimension offacade, and the reference fromcore.hwill be removed.detail::invoker,detail::inline_meta_storageanddetail::static_meta_storageare the implementation types of the meta traits. When PAC is enabled for compiler ABI, they will have the same level of security strength as virtual functions.Documentation will be updated separately.
(CI is not triggered for the new feature branch (filed #61). Manual CI: https://github.com/mingxwa/proxy/actions/runs/29426699530)
Resolves #7