[PATCH] D134945: [Vectorize][NFC] Remove InnerLoopVectorizer::widenCallInstruction

Wang Pengcheng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 30 03:00:41 PDT 2022


pcwang-thead created this revision.
pcwang-thead added reviewers: fhahn, Ayal.
Herald added subscribers: shiva0217, rogfer01, bollu, hiraditya.
Herald added a project: All.
pcwang-thead requested review of this revision.
Herald added subscribers: llvm-commits, vkmr.
Herald added a project: LLVM.

The implementation of this method has been moved to
VPWidenCallRecipe::execute in VPlanRecipes.cpp in D132586 <https://reviews.llvm.org/D132586>.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D134945

Files:
  llvm/lib/Transforms/Vectorize/LoopVectorize.cpp


Index: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
===================================================================
--- llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
+++ llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
@@ -477,11 +477,6 @@
   /// complex control flow around the loops.
   virtual std::pair<BasicBlock *, Value *> createVectorizedLoopSkeleton();
 
-  /// Widen a single call instruction within the innermost loop.
-  void widenCallInstruction(CallInst &CI, VPValue *Def, VPUser &ArgOperands,
-                            VPTransformState &State,
-                            Intrinsic::ID VectorIntrinsicID);
-
   /// Fix the vectorized code, taking care of header phi's, live-outs, and more.
   void fixVectorizedLoop(VPTransformState &State, VPlan &Plan);
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D134945.464200.patch
Type: text/x-patch
Size: 784 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220930/86f0a55b/attachment.bin>


More information about the llvm-commits mailing list