[llvm] [VPlan] Compute cost for binary op VPInstruction with underlying values. (PR #125434)

David Sherwood via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 4 08:57:55 PST 2025


================
@@ -768,6 +768,27 @@ void VPInstruction::execute(VPTransformState &State) {
             /*IsScalar*/ GeneratesPerFirstLaneOnly);
 }
 
+InstructionCost VPInstruction::computeCost(ElementCount VF,
+                                           VPCostContext &Ctx) const {
+  if (Instruction::isBinaryOp(getOpcode())) {
+    if (!getUnderlyingValue())
----------------
david-arm wrote:

Can you add a TODO here to deal with this case? Even if there isn't an underlying value, the cost of an add is still not zero. Alternatively, if there should always be an underlying value you could assert this?

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


More information about the llvm-commits mailing list