diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-08 23:58:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-08 23:58:12 +0000 |
commit | 42e3c81c5f23c42ba2415a8f797d430dad387734 (patch) | |
tree | 7090c3576bfbd3f7e147bc781db7964b1e88bc8b /lib/Analysis/BasicAliasAnalysis.cpp | |
parent | 20fad44ede55d9996a7d8a8f9012b763d7b7c601 (diff) |
By definition, 'tail' calls cannot access the stack frame of their caller.
Expose this as a simple form of mod/ref information. This implements
BasicAA/tailcall-modref.ll
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/BasicAliasAnalysis.cpp')
-rw-r--r-- | lib/Analysis/BasicAliasAnalysis.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index 334ef4a7d5..1110a017de 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -239,6 +239,12 @@ BasicAliasAnalysis::getModRefInfo(CallSite CS, Value *P, unsigned Size) { // because it simply can't get its address. if (!AddressMightEscape(AI)) return NoModRef; + + // If this is a tail call and P points to a stack location, we know that + // the tail call cannot access or modify the local stack. + if (CallInst *CI = dyn_cast<CallInst>(CS.getInstruction())) + if (CI->isTailCall() && isa<AllocaInst>(AI)) + return NoModRef; } // The AliasAnalysis base class has some smarts, lets use them. |