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

  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 44 const MDNode *TBAAInfo;
48 TBAAInfo(DenseMapInfo<const MDNode *>::getEmptyKey()) {}
63 if (TBAAInfo == DenseMapInfo<const MDNode *>::getEmptyKey())
64 // We don't have a TBAAInfo yet. Set it to NewTBAAInfo.
65 TBAAInfo = NewTBAAInfo;
66 else if (TBAAInfo != NewTBAAInfo)
67 // NewTBAAInfo conflicts with TBAAInfo.
68 TBAAInfo = DenseMapInfo<const MDNode *>::getTombstoneKey();
73 /// getTBAAInfo - Return the TBAAInfo, or null if there is no
76 // 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;
109 unsigned base_alignment, const MDNode *TBAAInfo = 0,
143 const MDNode *getTBAAInfo() const { return TBAAInfo; }
SelectionDAG.h 697 const MDNode *TBAAInfo = 0, const MDNode *Ranges = 0);
702 const MDNode *TBAAInfo = 0);
710 unsigned Alignment, const MDNode *TBAAInfo = 0,
722 const MDNode *TBAAInfo = 0);
729 const MDNode *TBAAInfo = 0);
    [all...]
MachineFunction.h 387 const MDNode *TBAAInfo = 0,
  /external/clang/lib/CodeGen/
CGValue.h 151 /// TBAAInfo - TBAA information to attach to dereferences of this LValue.
152 llvm::MDNode *TBAAInfo;
157 llvm::MDNode *TBAAInfo = 0) {
168 this->TBAAInfo = TBAAInfo;
218 llvm::MDNode *getTBAAInfo() const { return TBAAInfo; }
219 void setTBAAInfo(llvm::MDNode *N) { TBAAInfo = N; }
259 llvm::MDNode *TBAAInfo = 0) {
266 R.Initialize(type, qs, alignment, TBAAInfo);
CodeGenModule.h 468 llvm::MDNode *TBAAInfo);
    [all...]
CGExpr.cpp     [all...]
CodeGenFunction.h     [all...]
CodeGenModule.cpp 206 llvm::MDNode *TBAAInfo) {
207 Inst->setMetadata(llvm::LLVMContext::MD_tbaa, TBAAInfo);
    [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 421 const MDNode *TBAAInfo,
425 TBAAInfo(TBAAInfo), Ranges(Ranges) {
499 if (const MDNode *TBAAInfo = MMO.getTBAAInfo()) {
501 if (TBAAInfo->getNumOperands() > 0)
502 WriteAsOperand(OS, TBAAInfo->getOperand(0), /*PrintType=*/false);
    [all...]
MachineFunction.cpp 202 const MDNode *TBAAInfo,
205 TBAAInfo, Ranges);
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 173 const MDNode *TBAAInfo) {
175 return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod();
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
DAGCombiner.cpp 297 const MDNode *&TBAAInfo) const;
    [all...]

Completed in 638 milliseconds