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

  /external/llvm/include/llvm/IR/
Argument.h 90 bool hasNoAliasAttr() const;
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 554 return A->hasNoAliasAttr();
573 return A->hasNoAliasAttr() || A->hasByValAttr();
MemoryBuiltins.cpp 145 static bool hasNoAliasAttr(const Value *V, bool LookThroughBitCast) {
166 hasNoAliasAttr(V, LookThroughBitCast);
CFLAliasAnalysis.cpp 732 if (!Arg->hasNoAliasAttr() && Arg->getType()->isPointerTy())
    [all...]
Lint.cpp 246 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
BasicAliasAnalysis.cpp 85 if (A->hasByValAttr() || A->hasNoAliasAttr())
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 510 if (I.hasNoAliasAttr() && !I.hasNUses(0))
647 if (!A->hasNoAliasAttr())
    [all...]
  /external/llvm/lib/IR/
Function.cpp 137 /// hasNoAliasAttr - Return true if this argument has the noalias attribute on
139 bool Argument::hasNoAliasAttr() const {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 576 if (!A || !A->onlyReadsMemory() || !A->hasNoAliasAttr()) return false;
    [all...]

Completed in 1677 milliseconds