[LLVMdev] Finding all values derived from a function argument

Duncan Sands baldrick at free.fr
Fri Sep 24 00:26:06 PDT 2010


Hi Stephan,

> I am trying to retrieve all instructions from a function's body that
> are dependent on a specific argument. The strategy I am currently
> using for that is to follow all uses of the argument and record them.
> Also, whenever I encounter a store of a dependent value, I try to find
> loads in the function that are dependent on that store and resume
> use-tracking from there. For this purpose I am using the
> MemoryDependenceAnalysis pass, but to be honest, I think I am not
> using it correctly or not in the most efficient way.
>
> Is such functionality - finding dependent instructions - present in
> LLVM? If not, is there a more efficient way to determine dependent
> instructions than like in the code below? In particular, I'm wondering
> if it is possible to find all loads that depend on a particular store
> more efficiently?

I don't think memory dependence analysis is appropriate for this.  The function
llvm::PointerMayBeCaptured in CaptureTracking.cpp does something like what you
are trying to do.  It used to track stores and loads from them, but this was
removed because it was not helpful in practice.  The way it used to track
stores and loads was simple.  First, it only tried to analysis stores to local
variables (AllocaInst).  Stores to globals are harder since there are more ways
that other functions can get at the stored value.  If it detected a store to an
AllocaInst, then it walked all uses of the AllocaInst and analysed those.  A
load from the AllocaInst was considered to return the stored value (even though
more detailed analysis might have shown that it was loading some other value).
A store of the address of the local variable would also be tracked etc.  This
was a flow insensitive analysis.  However as I mentioned, it was all removed
because in practice either alloca's did not exist (because other passes had
promoted everything to registers) or their address was passed to some other
function where there was no way of knowing what the function did to it.  It is
easy to construct toy examples where tracking AllocaInst's helped, but in real
code it did not.

Ciao,

Duncan.



More information about the llvm-dev mailing list