[llvm] [X86][GlobalISel] Support addr matching in SDAG patterns (PR #130445)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 8 15:44:20 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 4d5955215eb74a3bfa2394333a0a412df7d5a036 766c7cd6ab616cf4d18ee51b985a57bfaa620536 --extensions h,cpp -- llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h llvm/lib/Target/X86/GISel/X86InstructionSelector.cpp llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp llvm/lib/Target/X86/GISel/X86LegalizerInfo.h llvm/lib/Target/X86/X86InstrBuilder.h
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp b/llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp
index 83bca5adde..a8c3a4646d 100644
--- a/llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp
+++ b/llvm/lib/Target/X86/GISel/X86LegalizerInfo.cpp
@@ -375,8 +375,8 @@ X86LegalizerInfo::X86LegalizerInfo(const X86Subtarget &STI,
{p0, p0, p0, 1},
{v4s8, p0, v4s8, 1}});
if (Is64Bit)
- Action.legalForTypesWithMemDesc({{s64, p0, s64, 1},
- {v2s32, p0, v2s32, 1}});
+ Action.legalForTypesWithMemDesc(
+ {{s64, p0, s64, 1}, {v2s32, p0, v2s32, 1}});
if (HasSSE1)
Action.legalForTypesWithMemDesc({{v4s32, p0, v4s32, 1}});
@@ -404,9 +404,8 @@ X86LegalizerInfo::X86LegalizerInfo(const X86Subtarget &STI,
{s32, p0, s8, 1},
{s32, p0, s16, 1}});
if (Is64Bit)
- Action.legalForTypesWithMemDesc({{s64, p0, s8, 1},
- {s64, p0, s16, 1},
- {s64, p0, s32, 1}});
+ Action.legalForTypesWithMemDesc(
+ {{s64, p0, s8, 1}, {s64, p0, s16, 1}, {s64, p0, s32, 1}});
} else {
Action.customIf([=](const LegalityQuery &Query) {
return Query.Types[0] != Query.MMODescrs[0].MemoryTy;
``````````
</details>
https://github.com/llvm/llvm-project/pull/130445
More information about the llvm-commits
mailing list