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

  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 260 Min = OnlyReadsMemory;
BasicAliasAnalysis.cpp 616 if (CS.onlyReadsMemory())
617 Min = OnlyReadsMemory;
641 if (F->onlyReadsMemory())
642 Min = OnlyReadsMemory;
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 131 Min = OnlyReadsMemory;
148 Min = OnlyReadsMemory;
397 } else if (F->onlyReadsMemory()) {
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 264 /// OnlyReadsMemory - This function does not perform any non-local stores or
270 OnlyReadsMemory = Anywhere | Ref,
306 /// onlyReadsMemory - If the specified call is known to only read from
315 bool onlyReadsMemory(ImmutableCallSite CS) {
316 return onlyReadsMemory(getModRefBehavior(CS));
319 /// onlyReadsMemory - If the specified function is known to only read from
323 bool onlyReadsMemory(const Function *F) {
324 return onlyReadsMemory(getModRefBehavior(F));
327 /// onlyReadsMemory - Return true if functions with the specified behavior are
330 static bool onlyReadsMemory(ModRefBehavior MRB)
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 249 milliseconds