ArgPromo+DebugInfo: Handle updating debug info over multiple applications of argument...
authorDavid Blaikie <dblaikie@gmail.com>
Wed, 23 Jul 2014 22:09:29 +0000 (22:09 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Wed, 23 Jul 2014 22:09:29 +0000 (22:09 +0000)
commit8e9cfa549768d36b4b63aa4ac4686e1800281a90
treef010ed00964978b516ad4eda2a3838396a46569c
parent7c60a98f16090b942b1e6c9882d32a8141d025e3
ArgPromo+DebugInfo: Handle updating debug info over multiple applications of argument promotion.

While the subprogram map cache used by Dead Argument Elimination works
there, I made a mistake when reusing it for Argument Promotion in
r212128 because ArgPromo may transform functions more than once whereas
DAE transforms each function only once, removing all the dead arguments
in one go.

To address this, ensure that the map is updated after each argument
promotion.

In retrospect it might be a little wasteful to create a map of all
subprograms when only handling a single CGSCC, but the alternative is
walking the debug info for each function in the CGSCC that gets updated.
It's not clear to me what the right tradeoff is there, but since the
current tradeoff seems to be working OK (and the code to keep things
updated is very cheap), let's stick with that for now.

llvm-svn: 213805
llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
llvm/test/Transforms/ArgumentPromotion/dbg.ll