[llvm] [TableGen] Add `!match` operator to do regex matching (PR #130759)

Pengcheng Wang via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 02:52:01 PDT 2025


================
@@ -1318,6 +1319,20 @@ const Init *BinOpInit::Fold(const Record *CurRec) const {
     }
     break;
   }
+  case MATCH: {
+    const auto *StrInit = dyn_cast<StringInit>(LHS);
+    const auto *RegexInit = dyn_cast<StringInit>(RHS);
+    if (!(StrInit && RegexInit))
+      return this;
----------------
wangpc-pp wrote:

No we can't, the `LHS`/`RHS` can be any `Init` with `StringRecTy`. They may not be resolved when folding.

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


More information about the llvm-commits mailing list