[all-commits] [llvm/llvm-project] fd7115: [LV] Move code from widenInstruction to VPWidenRec...

Florian Hahn via All-commits all-commits at lists.llvm.org
Mon Nov 29 01:09:18 PST 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: fd71159f6468988d9865a39c243695f823f4b6d7
      https://github.com/llvm/llvm-project/commit/fd71159f6468988d9865a39c243695f823f4b6d7
  Author: Florian Hahn <flo at fhahn.com>
  Date:   2021-11-29 (Mon, 29 Nov 2021)

  Changed paths:
    M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

  Log Message:
  -----------
  [LV] Move code from widenInstruction to VPWidenRecipe. (NFC)

The code in widenInstruction has already been transitioned to
only rely on information provided by VPWidenRecipe directly.

Moving the code directly to VPWidenRecipe::execute completes
the transition for the recipe.

It provides the following advantages:

1. Less indirection, easier to see what's going on.
2. Removes accesses to fields of ILV.

2) in particular ensures that no dependencies on
fields in ILV for vector code generation are re-introduced.

Reviewed By: Ayal

Differential Revision: https://reviews.llvm.org/D114322




More information about the All-commits mailing list