[llvm] [SLP] SLP's copyable elements based upon Main/Alt operations. (PR #124242)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 16:37:07 PST 2025


================
@@ -816,6 +854,9 @@ class InstructionsState {
   Instruction *MainOp = nullptr;
   Instruction *AltOp = nullptr;
 
+  /// True if alterative operation is copy instruction.
+  bool IsAltOpCopy = false;
+
----------------
alexey-bataev wrote:

I don't think you need this flag. Instead, InstructionsState should be initialized for the homogeneous instructions, not heterogeneous. And build the instruction, using the correctly built operands for the node

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


More information about the llvm-commits mailing list