HomeSort by relevance Sort by last modified time
    Searched defs:doesNotAccessMemory (Results 1 - 4 of 4) 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/include/llvm/Support/
CallSite.h 216 bool doesNotAccessMemory() const {
217 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory());
260 bool doesNotAccessMemory(unsigned ArgNo) const {
  /external/llvm/include/llvm/IR/
Function.h 237 bool doesNotAccessMemory() const {
247 return doesNotAccessMemory() ||
321 bool doesNotAccessMemory(unsigned n) const {
329 return doesNotAccessMemory(n) ||
Instructions.h     [all...]

Completed in 422 milliseconds