[llvm-branch-commits] [llvm] [AArch64][PAC] Support BLRA* instructions in SLS Hardening pass (PR #97605)
Kristof Beyls via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Jul 5 02:13:54 PDT 2024
================
@@ -68,6 +156,57 @@ struct SLSHardeningInserter : ThunkInserter<SLSHardeningInserter, ThunksSet> {
} // end anonymous namespace
+const ThunkKind ThunkKind::BR = {ThunkBR, "", false, false, AArch64::BR};
+const ThunkKind ThunkKind::BRAA = {ThunkBRAA, "aa_", true, true, AArch64::BRAA};
+const ThunkKind ThunkKind::BRAB = {ThunkBRAB, "ab_", true, true, AArch64::BRAB};
+const ThunkKind ThunkKind::BRAAZ = {ThunkBRAAZ, "aaz_", false, true,
+ AArch64::BRAAZ};
+const ThunkKind ThunkKind::BRABZ = {ThunkBRABZ, "abz_", false, true,
+ AArch64::BRABZ};
----------------
kbeyls wrote:
very minor nitpick: These probably can go directly after the definition of `struct ThunkKind`?
If so, it's easier to understand what all the "false" and "true"s mean here without having to scroll a lot to where `struct ThunkKind` is defined.
https://github.com/llvm/llvm-project/pull/97605
More information about the llvm-branch-commits
mailing list