[llvm] [VPlan] Add VPSymbolicValueSC for typed VPValues w/o underlying IR value (PR #130507)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 12:18:12 PDT 2025


================
@@ -172,6 +181,10 @@ class VPValue {
   /// Returns true if this VPValue is a live-in, i.e. defined outside the VPlan.
   bool isLiveIn() const { return !hasDefiningRecipe(); }
 
+  bool isSymbolic() const { return SubclassID == VPSymbolicValueSC; }
+
+  Type *getType() const;
----------------
fhahn wrote:

Done thanks. Also updated name to `getScalarType`

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


More information about the llvm-commits mailing list