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

llvm-svn: 21796
This commit is contained in:
Chris Lattner 2005-05-08 23:58:12 +00:00
parent af008dcdd1
commit bb0bfc4702
1 changed files with 6 additions and 0 deletions

View File

@ -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.