[llvm] 4986a79 - [TableGen] Emit `llvm::is_contained` for `CheckOpcode` predicate (#134057)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 20:11:39 PDT 2025
Author: Pengcheng Wang
Date: 2025-04-03T11:11:36+08:00
New Revision: 4986a7964858979d00f0c9a98d13db555d8a6f0d
URL: https://github.com/llvm/llvm-project/commit/4986a7964858979d00f0c9a98d13db555d8a6f0d
DIFF: https://github.com/llvm/llvm-project/commit/4986a7964858979d00f0c9a98d13db555d8a6f0d.diff
LOG: [TableGen] Emit `llvm::is_contained` for `CheckOpcode` predicate (#134057)
When the list is large, using `llvm::is_contained` is of higher
performance than a sequence of comparisons. When the list is small,
the `llvm::is_contained` can be inlined and unrolled, which has the
same effect as using a sequence of comparisons.
And the generated code is more readable.
Added:
Modified:
llvm/test/TableGen/MacroFusion.td
llvm/utils/TableGen/Common/PredicateExpander.cpp
Removed:
################################################################################
diff --git a/llvm/test/TableGen/MacroFusion.td b/llvm/test/TableGen/MacroFusion.td
index 6cf22f5447150..66cff7ec4ef4c 100644
--- a/llvm/test/TableGen/MacroFusion.td
+++ b/llvm/test/TableGen/MacroFusion.td
@@ -42,7 +42,7 @@ def TestBothFusionPredicate: Fusion<"test-both-fusion-predicate", "HasBothFusion
[BothFusionPredicate]>;
def TestFusion: SimpleFusion<"test-fusion", "HasTestFusion", "Test Fusion",
- CheckOpcode<[Inst0]>,
+ CheckOpcode<[Inst0, Inst1]>,
CheckAll<[
CheckOpcode<[Inst1]>,
CheckRegOperand<0, X0>
@@ -162,7 +162,7 @@ def TestSingleFusion: SingleFusion<"test-single-fusion", "HasTestSingleFusion",
// CHECK-PREDICATOR-NEXT: return true;
// CHECK-PREDICATOR-NEXT: {
// CHECK-PREDICATOR-NEXT: const MachineInstr *MI = FirstMI;
-// CHECK-PREDICATOR-NEXT: if (( MI->getOpcode() != Test::Inst0 ))
+// CHECK-PREDICATOR-NEXT: if (!llvm::is_contained({Test::Inst0, Test::Inst1}, MI->getOpcode()))
// CHECK-PREDICATOR-NEXT: return false;
// CHECK-PREDICATOR-NEXT: }
// CHECK-PREDICATOR-NEXT: if (!SecondMI.getOperand(0).getReg().isVirtual()) {
diff --git a/llvm/utils/TableGen/Common/PredicateExpander.cpp b/llvm/utils/TableGen/Common/PredicateExpander.cpp
index e54df89937c4a..09d953801600d 100644
--- a/llvm/utils/TableGen/Common/PredicateExpander.cpp
+++ b/llvm/utils/TableGen/Common/PredicateExpander.cpp
@@ -143,7 +143,6 @@ void PredicateExpander::expandCheckOpcode(raw_ostream &OS, const Record *Inst) {
void PredicateExpander::expandCheckOpcode(raw_ostream &OS,
ArrayRef<const Record *> Opcodes) {
assert(!Opcodes.empty() && "Expected at least one opcode to check!");
- bool First = true;
if (Opcodes.size() == 1) {
OS << "( ";
@@ -152,19 +151,15 @@ void PredicateExpander::expandCheckOpcode(raw_ostream &OS,
return;
}
- OS << '(';
- ++Indent;
- for (const Record *Rec : Opcodes) {
- OS << '\n' << Indent;
- if (!First)
- OS << (shouldNegate() ? "&& " : "|| ");
-
- expandCheckOpcode(OS, Rec);
- First = false;
- }
-
- --Indent;
- OS << '\n' << Indent << ')';
+ if (shouldNegate())
+ OS << '!';
+ OS << "llvm::is_contained(";
+ ListSeparator Sep;
+ OS << '{';
+ for (const Record *Inst : Opcodes)
+ OS << Sep << Inst->getValueAsString("Namespace") << "::" << Inst->getName();
+ OS << '}';
+ OS << ", MI" << (isByRef() ? "." : "->") << "getOpcode())";
}
void PredicateExpander::expandCheckPseudo(raw_ostream &OS,
More information about the llvm-commits
mailing list