[PATCH] D110939: [PHIElimination] Update LiveVariables after handling an unspillable terminator

Dave Green via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 4 13:28:53 PDT 2021


dmgreen added a comment.

If it helps, I would expect the unspillable terminators to look like:

  bb1:
    ..
    %r = UnspillableTerminator ..
  bb2:
    %p = phi %r, ...
    ... uses of %p

In our usecase in the Arm backend, bb2 will be a loop header, usually with a single block (but not necessarily, especially in the future).


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D110939/new/

https://reviews.llvm.org/D110939



More information about the llvm-commits mailing list