[all-commits] [llvm/llvm-project] d6eb48: [IROutliner] Ensure that phi values that are passe...

Andrew Litteken via All-commits all-commits at lists.llvm.org
Thu Apr 14 10:16:47 PDT 2022


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: d6eb480afbc038871570fa053d772c913cd77a61
      https://github.com/llvm/llvm-project/commit/d6eb480afbc038871570fa053d772c913cd77a61
  Author: Andrew Litteken <andrew.litteken at gmail.com>
  Date:   2022-04-14 (Thu, 14 Apr 2022)

  Changed paths:
    M llvm/include/llvm/Transforms/IPO/IROutliner.h
    M llvm/lib/Transforms/IPO/IROutliner.cpp
    A llvm/test/Transforms/IROutliner/exit-phi-nodes-incoming-value-constant-argument.ll

  Log Message:
  -----------
  [IROutliner] Ensure that phi values that are passed in as arguments are remapped as arguments

Issue: https://github.com/llvm/llvm-project/issues/54430

For incoming values of phi nodes added to an outlined function to accommodate different exit paths in the function, when a value is a constant that is passed into the outlined function as an argument, we find the corresponding value in the first extracted function used to fill the overall outlined function. When this value is an argument, the corresponding value used will be the old value, prior to outlining. This patch maintains a mapping from these values to arguments, and uses this mapping to update the added phi node accordingly.

Reviewers: paquette

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




More information about the All-commits mailing list