[llvm] [CodeGen] Use byte offsets and ptradd in ShadowStackGCLowering (PR #178436)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 28 06:31:02 PST 2026
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff origin/main HEAD --extensions cpp -- llvm/lib/CodeGen/ShadowStackGCLowering.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/CodeGen/ShadowStackGCLowering.cpp b/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
index 38a4c2e64..07b4a7b26 100644
--- a/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
+++ b/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
@@ -367,13 +367,13 @@ bool ShadowStackGCLoweringImpl::runOnFunction(Function &F,
if (RootOffset > LastEnd) {
Value *PaddingPtr =
AtEntry.CreatePtrAdd(StackEntry, AtEntry.getInt64(LastEnd));
- AtEntry.CreateMemSet(PaddingPtr, AtEntry.getInt8(0),
- RootOffset - LastEnd, Align(1));
+ AtEntry.CreateMemSet(PaddingPtr, AtEntry.getInt8(0), RootOffset - LastEnd,
+ Align(1));
}
// For each root, compute pointer using precomputed offset
- Value *SlotPtr =
- AtEntry.CreatePtrAdd(StackEntry, AtEntry.getInt64(RootOffset), "gc_root");
+ Value *SlotPtr = AtEntry.CreatePtrAdd(
+ StackEntry, AtEntry.getInt64(RootOffset), "gc_root");
// And use it in lieu of the alloca.
AllocaInst *OriginalAlloca = Roots[I].second;
``````````
</details>
https://github.com/llvm/llvm-project/pull/178436
More information about the llvm-commits
mailing list