-
Notifications
You must be signed in to change notification settings - Fork 13.5k
[PAC][AArch64] Lower ptrauth constants in code #94241
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,12 @@ def G_GLOBAL_VALUE : GenericInstruction { | |
let hasSideEffects = false; | ||
} | ||
|
||
def G_PTRAUTH_GLOBAL_VALUE : GenericInstruction { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please add an entry to: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks for suggestion! Done |
||
let OutOperandList = (outs type0:$dst); | ||
let InOperandList = (ins unknown:$addr, i32imm:$key, type1:$addrdisc, i64imm:$disc); | ||
let hasSideEffects = 0; | ||
} | ||
|
||
def G_CONSTANT_POOL : GenericInstruction { | ||
let OutOperandList = (outs type0:$dst); | ||
let InOperandList = (ins unknown:$src); | ||
|
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.
I think this really does need the extra newline after
.. code-block:: none
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.
Fixed, thanks, see 2b12acb