-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Pointer Authentication intrinsics #118104
Conversation
r? @davidtwco (rustbot has picked a reviewer for you, use r? to override) |
ifn!("llvm.ptrauth.strip.i64", fn(t_i64, t_i32) -> t_i64); | ||
ifn!("llvm.ptrauth.resign.i64", fn(t_i64, t_i32, t_i64, t_i32, t_i64) -> t_i64); | ||
ifn!("llvm.ptrauth.sign_generic.i64", fn(t_i64, t_i64) -> t_i64); | ||
ifn!("llvm.ptrauth.blend.i64", fn(t_i64, t_i64) -> t_i64); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You only need to add LLVM intrinsics in this place that are actually called by rustc_codegen_llvm.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arttet is this comment resolved?
thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My sincere apologies for the delay.
So, I believe I've fixed it, is that correct?
r? @bjorn3 |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
unsure about that status but I think this is waiting on the author (comment pending a reply?) @rustbot author |
Add Pointer Authentication intrinsics. They are related to arm64e architecture.
#115526
#73628