HomeSort by relevance Sort by last modified time
    Searched defs:DoesNotAccessMemory (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 242 /// DoesNotAccessMemory - This function does not perform any non-local loads
248 DoesNotAccessMemory = Nowhere | NoModRef,
292 /// doesNotAccessMemory - If the specified call is known to never read or
303 bool doesNotAccessMemory(ImmutableCallSite CS) {
304 return getModRefBehavior(CS) == DoesNotAccessMemory;
307 /// doesNotAccessMemory - If the specified function is known to never read or
310 bool doesNotAccessMemory(const Function *F) {
311 return getModRefBehavior(F) == DoesNotAccessMemory;
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 2237 milliseconds