[clang] [CIR][X86] Implement xsave/xrstor builtins Fixes part of #167752 (PR #170877)
via cfe-commits
cfe-commits at lists.llvm.org
Sat Dec 6 01:55:26 PST 2025
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,c -- clang/test/CIR/CodeGenBuiltins/X86/xsave-builtins.c clang/lib/CIR/CodeGen/CIRGenBuiltinX86.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/clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp b/clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp
index be0bf5832..850aa0ecb 100644
--- a/clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenBuiltinX86.cpp
@@ -589,8 +589,8 @@ mlir::Value CIRGenFunction::emitX86BuiltinExpr(unsigned builtinID,
// Mhi = (uint32_t)(ops[1] >> 32) - extract high 32 bits via right shift
cir::ConstantOp shift32 = builder.getSInt64(32, loc);
- mlir::Value mhi =
- builder.createShift(loc, ops[1], shift32.getResult(), /*isShiftLeft=*/false);
+ mlir::Value mhi = builder.createShift(loc, ops[1], shift32.getResult(),
+ /*isShiftLeft=*/false);
mhi = builder.createIntCast(mhi, i32Ty);
// Mlo = (uint32_t)ops[1] - extract low 32 bits by truncation
``````````
</details>
https://github.com/llvm/llvm-project/pull/170877
More information about the cfe-commits
mailing list