HomeSort by relevance Sort by last modified time
    Searched refs:TBAATag (Results 1 - 18 of 18) sorted by null

  /external/llvm/include/llvm/Analysis/
Loads.h 47 /// If TBAATag is non-null and a load or store is found, the TBAA tag from the
54 MDNode **TBAATag = nullptr);
AliasAnalysis.h 115 /// TBAATag - The metadata node which describes the TBAA type of
117 const MDNode *TBAATag;
121 : Ptr(P), Size(S), TBAATag(N) {}
137 Copy.TBAATag = nullptr;
581 DenseMapInfo<const MDNode *>::getHashValue(Val.TBAATag);
587 LHS.TBAATag == RHS.TBAATag;
MemoryDependenceAnalysis.h 284 /// TBAATag - The TBAA tag associated with dereferences of the
286 const MDNode *TBAATag;
289 : Size(AliasAnalysis::UnknownSize), TBAATag(nullptr) {}
  /external/llvm/lib/IR/
IRBuilder.cpp 65 bool isVolatile, MDNode *TBAATag) {
75 if (TBAATag)
76 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
83 bool isVolatile, MDNode *TBAATag, MDNode *TBAAStructTag) {
95 if (TBAATag)
96 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
107 bool isVolatile, MDNode *TBAATag) {
119 if (TBAATag)
120 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
  /external/llvm/lib/Analysis/
Loads.cpp 136 /// If TBAATag is non-null and a load or store is found, the TBAA tag from the
143 MDNode **TBAATag) {
172 if (TBAATag) *TBAATag = LI->getMetadata(LLVMContext::MD_tbaa);
181 if (TBAATag) *TBAATag = SI->getMetadata(LLVMContext::MD_tbaa);
ScalarEvolutionAliasAnalysis.cpp 165 AO ? nullptr : LocA.TBAATag),
168 BO ? nullptr : LocB.TBAATag)) == NoAlias)
AliasAnalysis.cpp 289 MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa);
291 return Location(MTI->getRawSource(), Size, TBAATag);
302 MDNode *TBAATag = MTI->getMetadata(LLVMContext::MD_tbaa);
304 return Location(MTI->getRawDest(), Size, TBAATag);
TypeBasedAliasAnalysis.cpp 457 const MDNode *AM = LocA.TBAATag;
459 const MDNode *BM = LocB.TBAATag;
475 const MDNode *M = Loc.TBAATag;
516 if (const MDNode *L = Loc.TBAATag)
MemoryDependenceAnalysis.cpp     [all...]
BasicAliasAnalysis.cpp 469 AliasResult Alias = aliasCheck(LocA.Ptr, LocA.Size, LocA.TBAATag,
470 LocB.Ptr, LocB.Size, LocB.TBAATag);
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAliasAnalysis.cpp 65 AliasAnalysis::alias(Location(SA, LocA.Size, LocA.TBAATag),
66 Location(SB, LocB.Size, LocB.TBAATag));
96 if (AliasAnalysis::pointsToConstantMemory(Location(S, Loc.Size, Loc.TBAATag),
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 693 MDNode *TBAATag;
717 MDNode *TBAATag)
720 LI(li), DL(dl), Alignment(alignment), TBAATag(TBAATag) {}
746 if (TBAATag) NewSI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
801 MDNode *TBAATag = nullptr;
    [all...]
JumpThreading.cpp     [all...]
ScalarReplAggregates.cpp     [all...]
SROA.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 207 llvm::MDNode *TBAATag = getTBAAScalarTagInfo(TBAAInfo);
208 Fields.push_back(llvm::MDBuilder::TBAAStructField(Offset, Size, TBAATag));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 370 bool isVolatile = false, MDNode *TBAATag = nullptr) {
371 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile, TBAATag);
375 bool isVolatile = false, MDNode *TBAATag = nullptr);
382 bool isVolatile = false, MDNode *TBAATag = nullptr,
384 return CreateMemCpy(Dst, Src, getInt64(Size), Align, isVolatile, TBAATag,
389 bool isVolatile = false, MDNode *TBAATag = nullptr,
398 bool isVolatile = false, MDNode *TBAATag = nullptr) {
399 return CreateMemMove(Dst, Src, getInt64(Size), Align, isVolatile, TBAATag);
403 bool isVolatile = false, MDNode *TBAATag = nullptr);
    [all...]

Completed in 1653 milliseconds