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

  /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/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/CodeGen/
MachineMemOperand.h 86 const MDNode *TBAAInfo;
112 unsigned base_alignment, const MDNode *TBAAInfo = 0,
149 const MDNode *getTBAAInfo() const { return TBAAInfo; }
SelectionDAG.h 710 const MDNode *TBAAInfo = 0, const MDNode *Ranges = 0);
715 const MDNode *TBAAInfo = 0);
723 unsigned Alignment, const MDNode *TBAAInfo = 0,
735 const MDNode *TBAAInfo = 0);
742 const MDNode *TBAAInfo = 0);
    [all...]
MachineFunction.h 405 const MDNode *TBAAInfo = 0,
  /external/clang/lib/CodeGen/
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);
CodeGenTBAA.cpp 213 llvm::MDNode *TBAAInfo = MayAlias ? getChar() : getTBAAInfo(QTy);
215 getTBAAScalarTagInfo(TBAAInfo) : TBAAInfo;
CGExpr.cpp     [all...]
CodeGenModule.h 543 llvm::MDNode *TBAAInfo,
    [all...]
CodeGenFunction.h     [all...]
CodeGenModule.cpp 253 llvm::MDNode *TBAAInfo,
257 TBAA->getTBAAScalarTagInfo(TBAAInfo));
259 Inst->setMetadata(llvm::LLVMContext::MD_tbaa, TBAAInfo);
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 422 const MDNode *TBAAInfo,
426 TBAAInfo(TBAAInfo), Ranges(Ranges) {
500 if (const MDNode *TBAAInfo = MMO.getTBAAInfo()) {
502 if (TBAAInfo->getNumOperands() > 0)
503 WriteAsOperand(OS, TBAAInfo->getOperand(0), /*PrintType=*/false);
    [all...]
MachineFunction.cpp 226 const MDNode *TBAAInfo,
229 TBAAInfo, Ranges);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 176 const MDNode *TBAAInfo) {
178 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp 305 const MDNode *&TBAAInfo) const;
    [all...]

Completed in 648 milliseconds