[llvm] [VPlan] Introduce VPlanConstantFolder (PR #125365)

Ramkumar Ramachandra via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 12:56:10 PST 2025


================
@@ -66,6 +67,12 @@ class VPBuilder {
     return createInstruction(Opcode, ArrayRef<VPValue *>(Operands), DL, Name);
   }
 
+  VPValue *getOrAddLiveIn(Value *V) {
+    if (BB)
+      return BB->getPlan()->getOrAddLiveIn(V);
+    return new VPValue(V);
----------------
artagnon wrote:

Will it? I thought the Builder is used in two different ways: when the insertion point is set, and when the insertion point isn't set. For the case when the insertion point isn't set, wouldn't the following introduce a leak, if this introduces a leak?

```cpp
template <typename T> T *tryInsertInstruction(T *R) {
    if (BB)
      BB->insert(R, InsertPt);
    return R;
  }
  VPInstruction *createInstruction(unsigned Opcode,
                                   ArrayRef<VPValue *> Operands, DebugLoc DL,
                                   const Twine &Name = "") {
    return tryInsertInstruction(new VPInstruction(Opcode, Operands, DL, Name));
  }
```

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


More information about the llvm-commits mailing list