[PATCH] D70431: [DebugInfo] Make describeLoadedValue() reg aware

Vedant Kumar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 19 18:14:16 PST 2019


vsk added a comment.

Does this reduce/remove the need for this piece of logic in AArch64's ISel lowering?

  // Call site info is used for function's parameter entry value
  // tracking. For now we track only simple cases when parameter
  // is transferred through whole register.
  CSInfo.erase(std::remove_if(CSInfo.begin(), CSInfo.end(),
                              [&VA](MachineFunction::ArgRegPair ArgReg) {
                                return ArgReg.Reg == VA.getLocReg();
                              }),
               CSInfo.end());


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D70431





More information about the llvm-commits mailing list