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

  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 136 Min = OnlyReadsMemory;
153 Min = OnlyReadsMemory;
392 } else if (F->onlyReadsMemory()) {
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 274 /// OnlyReadsMemory - This function does not perform any non-local stores or
280 OnlyReadsMemory = Anywhere | Ref,
324 /// onlyReadsMemory - If the specified call is known to only read from
333 bool onlyReadsMemory(ImmutableCallSite CS) {
334 return onlyReadsMemory(getModRefBehavior(CS));
337 /// onlyReadsMemory - If the specified function is known to only read from
341 bool onlyReadsMemory(const Function *F) {
342 return onlyReadsMemory(getModRefBehavior(F));
345 /// onlyReadsMemory - Return true if functions with the specified behavior are
348 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 505 Min = OnlyReadsMemory;
BasicAliasAnalysis.cpp 681 if (CS.onlyReadsMemory())
682 Min = OnlyReadsMemory;
706 if (F->onlyReadsMemory())
707 Min = OnlyReadsMemory;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 2350 milliseconds