Home
last modified time | relevance | path

Searched refs:hasNoAliasAttr (Results 1 – 8 of 8) sorted by relevance

/external/llvm/include/llvm/IR/
DArgument.h86 bool hasNoAliasAttr() const;
/external/llvm/lib/Analysis/
DAliasAnalysis.cpp549 return A->hasNoAliasAttr(); in isNoAliasArgument()
568 return A->hasNoAliasAttr() || A->hasByValAttr(); in isIdentifiedObject()
DMemoryBuiltins.cpp142 static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) { in hasNoAliasAttr() function
163 hasNoAliasAttr(V, LookThroughBitCast); in isNoAliasFn()
DLint.cpp244 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy()) in visitCallSite()
DCFLAliasAnalysis.cpp819 if (!Arg->hasNoAliasAttr() && Arg->getType()->isPointerTy()) in valueToAttrIndex()
DBasicAliasAnalysis.cpp76 if (A->hasByValAttr() || A->hasNoAliasAttr()) in isNonEscapingLocalObject()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp407 if (I->hasNoAliasAttr() && !I->hasNUses(0)) in AddAliasScopeMetadata()
544 if (!A->hasNoAliasAttr()) in AddAliasScopeMetadata()
/external/llvm/lib/IR/
DFunction.cpp130 bool Argument::hasNoAliasAttr() const { in hasNoAliasAttr() function in Argument