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

  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 201 bool isNoAlias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
205 /// A convenience wrapper around the \c isNoAlias helper interface.
206 bool isNoAlias(const Value *V1, uint64_t V1Size, const Value *V2,
208 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
211 /// A convenience wrapper around the \c isNoAlias helper interface.
212 bool isNoAlias(const Value *V1, const Value *V2) {
213 return isNoAlias(MemoryLocation(V1), MemoryLocation(V2));
    [all...]
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 348 if (isNoAlias(MemoryLocation(*CI), MemoryLocation(Object)))
  /external/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 460 if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false;
    [all...]
MemCpyOptimizer.cpp 812 if (!AA.isNoAlias(MemoryLocation::getForDest(M),
    [all...]

Completed in 273 milliseconds