[llvm] [TableGen] Emit `llvm::is_contained` when CheckOpcode accepts a large list (PR #134057)

Matt Arsenault via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 2 02:50:41 PDT 2025


================
@@ -152,6 +152,18 @@ void PredicateExpander::expandCheckOpcode(raw_ostream &OS,
     return;
   }
 
+  if (Opcodes.size() >= 8) {
+    OS << (shouldNegate() ? "!" : "") << "llvm::is_contained(";
+    ListSeparator Sep;
+    OS << "{";
+    for (const Record *Inst : Opcodes)
+      OS << Sep << Inst->getValueAsString("Namespace")
+         << "::" << Inst->getName();
+    OS << "}";
----------------
arsenm wrote:

```suggestion
    if (shouldNegate())
      OS << '!' << "llvm::is_contained(";
    ListSeparator Sep;
    OS << '{';
    for (const Record *Inst : Opcodes)
      OS << Sep << Inst->getValueAsString("Namespace")
         << "::" << Inst->getName();
    OS << '}';
```

https://github.com/llvm/llvm-project/pull/134057


More information about the llvm-commits mailing list