HomeSort by: relevance | last modified time | path
    Searched refs:AATags (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryLocation.cpp 38 AAMDNodes AATags;
39 LI->getAAMetadata(AATags);
44 LocationSize::precise(DL.getTypeStoreSize(LI->getType())), AATags);
48 AAMDNodes AATags;
49 SI->getAAMetadata(AATags);
55 AATags);
59 AAMDNodes AATags;
60 VI->getAAMetadata(AATags);
63 LocationSize::afterPointer(), AATags);
67 AAMDNodes AATags;
    [all...]
ScopedNoAliasAA.cpp 62 const MDNode *AScopes = LocA.AATags.Scope, *BScopes = LocB.AATags.Scope;
64 const MDNode *ANoAlias = LocA.AATags.NoAlias, *BNoAlias = LocB.AATags.NoAlias;
82 if (!mayAliasInScopes(Loc.AATags.Scope,
87 Loc.AATags.NoAlias))
ObjCARCAliasAnalysis.cpp 50 AAResultBase::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
51 MemoryLocation(SB, LocB.Size, LocB.AATags), AAQI);
82 MemoryLocation(S, Loc.Size, Loc.AATags), AAQI, OrLocal))
ScalarEvolutionAliasAnalysis.cpp 88 AO ? AAMDNodes() : LocA.AATags),
92 BO ? AAMDNodes() : LocB.AATags),
TypeBasedAliasAnalysis.cpp 378 if (Aliases(LocA.AATags.TBAA, LocB.AATags.TBAA))
391 const MDNode *M = Loc.AATags.TBAA;
432 if (const MDNode *L = Loc.AATags.TBAA)
MemoryDependenceAnalysis.cpp 1052 InitialNLPI.AATags = Loc.AATags;
1104 // If the query's AATags are inconsistent with the cached one,
1107 if (CacheInfo->AATags != Loc.AATags) {
1108 if (CacheInfo->AATags) {
1110 CacheInfo->AATags = AAMDNodes();
1120 if (Loc.AATags)
LoopAccessAnalysis.cpp 517 AST.add(Ptr, LocationSize::beforeOrAfterPointer(), Loc.AATags);
526 AST.add(Ptr, LocationSize::beforeOrAfterPointer(), Loc.AATags);
1939 Loc.AATags.TBAA = nullptr;
1994 Loc.AATags.TBAA = nullptr;
AliasSetTracker.cpp 350 const AAMDNodes &AAInfo = MemLoc.AATags;
DependenceAnalysis.cpp 657 MemoryLocation::getBeforeOrAfter(LocA.Ptr, LocA.AATags);
659 MemoryLocation::getBeforeOrAfter(LocB.Ptr, LocB.AATags);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryLocation.h 230 AAMDNodes AATags;
268 const AAMDNodes &AATags = AAMDNodes()) {
269 return MemoryLocation(Ptr, LocationSize::afterPointer(), AATags);
275 getBeforeOrAfter(const Value *Ptr, const AAMDNodes &AATags = AAMDNodes()) {
276 return MemoryLocation(Ptr, LocationSize::beforeOrAfterPointer(), AATags);
286 : Ptr(nullptr), Size(LocationSize::beforeOrAfterPointer()), AATags() {}
289 const AAMDNodes &AATags = AAMDNodes())
290 : Ptr(Ptr), Size(Size), AATags(AATags) {}
306 Copy.AATags = AAMDNodes()
    [all...]
MemoryDependenceAnalysis.h 310 AAMDNodes AATags;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 1277 AAMDNodes AATags;
1278 SomeLoad->getAAMetadata(AATags);
1310 if (AATags)
1311 Load->setAAMetadata(AATags);
2509 AAMDNodes AATags;
2510 LI.getAAMetadata(AATags);
2532 if (AATags)
2533 NewLI->setAAMetadata(AATags.shift(NewBeginOffset - BeginOffset));
2571 if (AATags)
2572 NewLI->setAAMetadata(AATags.shift(NewBeginOffset - BeginOffset))
    [all...]
LICM.cpp 1852 AAMDNodes AATags;
1880 const AAMDNodes &AATags, ICFLoopSafetyInfo &SafetyInfo)
1884 Alignment(alignment), UnorderedAtomic(UnorderedAtomic), AATags(AATags),
1913 if (AATags)
1914 NewSI->setAAMetadata(AATags);
2052 AAMDNodes AATags;
2160 UI->getAAMetadata(AATags);
2161 } else if (AATags) {
2162 UI->getAAMetadata(AATags, /* Merge = */ true)
    [all...]
JumpThreading.cpp 1367 AAMDNodes AATags;
1368 LoadI->getAAMetadata(AATags);
1398 AATags);
1499 if (AATags)
1500 NewVal->setAAMetadata(AATags);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 1560 AAMDNodes AATags;
1561 SI.getAAMetadata(AATags);
1562 if (AATags) {
1563 OtherStore->getAAMetadata(AATags, /* Merge = */ true);
1564 NewSI->setAAMetadata(AATags);

Completed in 40 milliseconds