Ben Liblit
2011-Aug-10 03:45 UTC
[LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
Andrew Lenharth wrote:> If I remember correctly, it only tries to resolve indirect calls. The > analysis doesn't track direct calls because you can do it just as well > yourself.DSCallGraph::callee_begin() and DSCallGraph::callee_end() cooperate to iterate over an empty set (EmptyActual) for any call site not found in the ActualCallees map. So if direct calls are not tracked, then I would expect the callee iterators for *both* direct calls to yield this empty set. Getting the empty set for one direct call but a correct singleton set for the other direct call is a troubling inconsistency that leaves me unsure which results I can trust and which I cannot.
Will Dietz
2011-Aug-11 04:44 UTC
[LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
On Tue, Aug 9, 2011 at 10:45 PM, Ben Liblit <liblit at cs.wisc.edu> wrote:> Andrew Lenharth wrote: >> If I remember correctly, it only tries to resolve indirect calls. The >> analysis doesn't track direct calls because you can do it just as well >> yourself. > > DSCallGraph::callee_begin() and DSCallGraph::callee_end() cooperate to > iterate over an empty set (EmptyActual) for any call site not found in > the ActualCallees map. So if direct calls are not tracked, then I would > expect the callee iterators for *both* direct calls to yield this empty > set. Getting the empty set for one direct call but a correct singleton > set for the other direct call is a troubling inconsistency that leaves > me unsure which results I can trust and which I cannot.Hi Ben, I just tested the example you gave, and get the same results--one set is empty, the other contains the expected single function. As Andrew mentioned, DSA handles indirect and direct callsites differently, and for direct callsites it's expected that the user simply looks at the function itself to determine what is called. In this example, we only track one callsite in test() since as far as alias analysis goes, the effects of both callsites are same, and we don't need to consider both callsites to build our analysis. This kind of optimization is extremely useful in making DSA run on larger codes. That said, we probably could more cleanly export this information to the user, but for now just handle direct calls yourself. Sorry for the confusion :). Hope this helps! ~Will
Ben Liblit
2011-Aug-11 15:24 UTC
[LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
Will Dietz wrote:> DSA handles indirect and direct callsites differently, and for direct callsites it's expected that the user > simply looks at the function itself to determine what is called. > > In this example, we only track one callsite in test() since as far as > alias analysis goes, the effects of both callsites are sameOK, that definitely makes sense, including why one direct call site gives the expected singleton set while the other gives the empty set. Thank you (and Andrew!) for the clarification.> That said, we probably could more cleanly export this information to > the user, but for now just handle direct calls yourself.I'd humbly suggest that one of the following changes be applied: (1) Change DSCallGraph::callee_begin() to recognize when its argument is a direct call site, and return an iterator over a singleton set in that situation. This has the advantage of subsuming the direct-call check that many clients of this class might otherwise need to perform themselves. As an alternative, lazily add direct call sites (and their singleton callee sets) to ActualCallees on demand whenever such a site is passed as an argument to DSCallGraph::callee_begin(). (2) Change DSCallGraph::callee_begin() to fail an assertion when its argument is a direct call site. At least this provides some safety net to help clients (like me!) who do not realize that DSCallGraph does not claim to track direct calls reliably. (3) If fix (1) is not used, then document this direct-calls-are-not-tracked-reliably restriction *somewhere*. I'm not sure where exactly, since "poolalloc/dsa-manual/manual.tex" does not mention DSCallGraph at all. At least it could be put into the "DSCallGraph.h" header as a comment somewhere. Regards, Ben
Apparently Analagous Threads
- [LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
- [LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
- [LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
- [LLVMdev] EQTDDataStructures omits obvious, direct callee from DSCallGraph
- [LLVMdev] incorrect DSCallGraph for simple indirect call with vtable nearby