From 25df20f169eb90d2e5f9cff3018a4d935ee5d796 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 16 Jun 2008 06:38:26 +0000 Subject: [PATCH] simplify some code by using a helper function. This really really wants a 'nocapture' predicate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52304 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/BasicAliasAnalysis.cpp | 38 ++++++++++++----------------- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index 07f9480a6e6..b417a484760 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -65,7 +65,8 @@ static bool AddressMightEscape(const Value *V) { break; // next use case Instruction::Call: // If the call is to a few known safe intrinsics, we know that it does - // not escape + // not escape. + // TODO: Eventually just check the 'nocapture' attribute. if (!isa(I)) return true; break; // next use @@ -339,27 +340,20 @@ BasicAliasAnalysis::getModRefInfo(CallSite CS, Value *P, unsigned Size) { if (CI->isTailCall()) return NoModRef; - // Allocations and byval arguments are "new" objects. - if (isa(Object) || isa(Object)) { - // Okay, the pointer is to a stack allocated (or effectively so, for - // for noalias parameters) object. If the address of this object doesn't - // escape from this function body to a callee, then we know that no - // callees can mod/ref it unless they are actually passed it. - if (isa(Object) || - cast(Object)->hasByValAttr() || - cast(Object)->hasNoAliasAttr()) - if (!AddressMightEscape(Object)) { - bool passedAsArg = false; - for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end(); - CI != CE; ++CI) - if (isa((*CI)->getType()) && - (getUnderlyingObject(*CI) == P || - alias(cast(CI), ~0U, P, ~0U) != NoAlias)) - passedAsArg = true; - - if (!passedAsArg) - return NoModRef; - } + // If the pointer is to a locally allocated object that does not escape, + // then the call can not mod/ref the pointer unless the call takes the + // argument without capturing it. + if (isNonEscapingLocalObject(Object)) { + bool passedAsArg = false; + // TODO: Eventually only check 'nocapture' arguments. + for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end(); + CI != CE; ++CI) + if (isa((*CI)->getType()) && + alias(cast(CI), ~0U, P, ~0U) != NoAlias) + passedAsArg = true; + + if (!passedAsArg) + return NoModRef; } }