[all-commits] [llvm/llvm-project] b46baa: Don't separate imp/expl def handling for call site...
David via All-commits
all-commits at lists.llvm.org
Mon Jan 27 02:32:05 PST 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: b46baa82fc3ec679cd6192b8ee04960c3e541ed1
https://github.com/llvm/llvm-project/commit/b46baa82fc3ec679cd6192b8ee04960c3e541ed1
Author: David Stenberg <david.stenberg at ericsson.com>
Date: 2020-01-27 (Mon, 27 Jan 2020)
Changed paths:
M llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Log Message:
-----------
Don't separate imp/expl def handling for call site params
Summary:
Since D70431 the describeLoadedValue() hook takes a parameter register,
meaning that it can now be asked to describe any register. This means
that we can drop the difference between explicit and implicit defines
that we previously had in collectCallSiteParameters().
I have not found any case for any upstream targets where a parameter
register is only implicitly defined, and does not overlap with any
explicit defines. I don't know if such a case would even make sense. So
as far as I have tested, this patch should be a non-functional change.
However, this reduces the complexity of the code a bit, and it will
simplify the implementation of an upcoming patch which solves PR44118.
Reviewers: djtodoro, NikolaPrica, aprantl, vsk
Reviewed By: djtodoro, vsk
Subscribers: hiraditya, llvm-commits
Tags: #debug-info, #llvm
Differential Revision: https://reviews.llvm.org/D73167
More information about the All-commits
mailing list