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,
284 /// doesNotAccessMemory - If the specified call is known to never read or
295 bool doesNotAccessMemory(ImmutableCallSite CS) {
296 return getModRefBehavior(CS) == DoesNotAccessMemory;
299 /// doesNotAccessMemory - If the specified function is known to never read or
302 bool doesNotAccessMemory(const Function *F) {
303 return getModRefBehavior(F) == DoesNotAccessMemory;
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]

Completed in 131 milliseconds