HomeSort by relevance Sort by last modified time
    Searched defs:TBAAInfo (Results 1 - 6 of 6) sorted by null

  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 213 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
215 getTBAAScalarTagInfo(TBAAInfo) : TBAAInfo;
CGValue.h 165 /// TBAAInfo - TBAA information to attach to dereferences of this LValue.
166 llvm::MDNode *TBAAInfo;
171 llvm::MDNode *TBAAInfo = 0) {
187 this->TBAAInfo = TBAAInfo;
250 llvm::MDNode *getTBAAInfo() const { return TBAAInfo; }
251 void setTBAAInfo(llvm::MDNode *N) { TBAAInfo = N; }
291 llvm::MDNode *TBAAInfo = 0) {
298 R.Initialize(type, qs, alignment, TBAAInfo);
  /external/llvm/include/llvm/CodeGen/
MachineMemOperand.h 86 const MDNode *TBAAInfo;
112 unsigned base_alignment, const MDNode *TBAAInfo = 0,
149 const MDNode *getTBAAInfo() const { return TBAAInfo; }
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 96 uint64_t Size, const MDNode *TBAAInfo,
107 AliasAnalysis::Location(Entry.getValue(), Size, TBAAInfo));
111 P->updateSizeAndTBAAInfo(Size, TBAAInfo);
116 Entry.updateSizeAndTBAAInfo(Size, TBAAInfo);
144 const MDNode *TBAAInfo,
156 AliasAnalysis::Location(Ptr, Size, TBAAInfo));
162 if (AA.alias(AliasAnalysis::Location(Ptr, Size, TBAAInfo),
171 AliasAnalysis::Location(Ptr, Size, TBAAInfo)) !=
220 const MDNode *TBAAInfo) {
223 if (I->Forward || !I->aliasesPointer(Ptr, Size, TBAAInfo, AA)) continue
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 43 const MDNode *TBAAInfo;
47 TBAAInfo(DenseMapInfo<const MDNode *>::getEmptyKey()) {}
62 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey())
63 // We don't have a TBAAInfo yet. Set it to NewTBAAInfo.
64 TBAAInfo = NewTBAAInfo;
65 else if (TBAAInfo != NewTBAAInfo)
66 // NewTBAAInfo conflicts with TBAAInfo.
67 TBAAInfo = DenseMapInfo<const MDNode *>::getTombstoneKey();
72 /// getTBAAInfo - Return the TBAAInfo, or null if there is no
75 // If we have missing or conflicting TBAAInfo, return null
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]

Completed in 107 milliseconds