/external/llvm/lib/Analysis/ |
D | AliasAnalysis.cpp | 144 if (onlyReadsMemory(MRB)) in getModRefInfo() 206 if (onlyReadsMemory(CS1B) && onlyReadsMemory(CS2B)) in getModRefInfo() 211 if (onlyReadsMemory(CS1B)) in getModRefInfo() 470 if (CS.onlyReadsMemory(ArgNo)) { in callCapturesBefore()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 76 if (AliasAnalysis::onlyReadsMemory(MRB)) in checkFunctionMemoryAccess() 204 if (F->onlyReadsMemory() && ReadsMemory) in addReadAttrs() 415 if (CS.onlyReadsMemory()) { in determinePointerReadAttrs() 455 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex)) in determinePointerReadAttrs() 506 if (F->onlyReadsMemory() && F->doesNotThrow() && in addArgumentAttrs() 548 if (!HasNonLocalUses && !A->onlyReadsMemory()) { in addArgumentAttrs()
|
/external/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 190 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser; in GetCallSiteClass() 192 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call; in GetCallSiteClass()
|
D | AliasAnalysis.h | 299 bool onlyReadsMemory(ImmutableCallSite CS) { in onlyReadsMemory() function 300 return onlyReadsMemory(getModRefBehavior(CS)); in onlyReadsMemory() 312 bool onlyReadsMemory(const Function *F) { in onlyReadsMemory() function 313 return onlyReadsMemory(getModRefBehavior(F)); in onlyReadsMemory() 318 static bool onlyReadsMemory(FunctionModRefBehavior MRB) { in onlyReadsMemory() function
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 176 return CB.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser; in GetCallSiteClass() 178 return CB.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call; in GetCallSiteClass()
|
D | AliasAnalysis.h | 461 bool onlyReadsMemory(const CallBase *Call) { 462 return getMemoryEffects(Call).onlyReadsMemory(); 474 bool onlyReadsMemory(const Function *F) { 475 return getMemoryEffects(F).onlyReadsMemory();
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 202 return CS.onlyReadsMemory() ? ARCInstKind::User : ARCInstKind::CallOrUser; in GetCallSiteClass() 204 return CS.onlyReadsMemory() ? ARCInstKind::None : ARCInstKind::Call; in GetCallSiteClass()
|
D | AliasAnalysis.h | 459 bool onlyReadsMemory(const CallBase *Call) { in onlyReadsMemory() function 460 return onlyReadsMemory(getModRefBehavior(Call)); in onlyReadsMemory() 472 bool onlyReadsMemory(const Function *F) { in onlyReadsMemory() function 473 return onlyReadsMemory(getModRefBehavior(F)); in onlyReadsMemory() 478 static bool onlyReadsMemory(FunctionModRefBehavior MRB) { in onlyReadsMemory() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 118 if (AliasAnalysis::onlyReadsMemory(MRB)) in checkFunctionMemoryAccess() 276 if (F->onlyReadsMemory() && ReadsMemory) in addReadAttrs() 501 if (CS.onlyReadsMemory()) { in determinePointerReadAttrs() 541 if (!CS.onlyReadsMemory() && !CS.onlyReadsMemory(UseIndex)) in determinePointerReadAttrs() 703 if (F->onlyReadsMemory() && F->doesNotThrow() && in addArgumentAttrs() 744 if (!HasNonLocalUses && !A->onlyReadsMemory()) { in addArgumentAttrs()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Argument.h | 108 bool onlyReadsMemory() const;
|
D | CallSite.h | 467 bool onlyReadsMemory() const { in onlyReadsMemory() function 468 CALLSITE_DELEGATE_GETTER(onlyReadsMemory()); in onlyReadsMemory() 632 bool onlyReadsMemory(unsigned OpNo) const { in onlyReadsMemory() function
|
/external/llvm/include/llvm/IR/ |
D | Argument.h | 112 bool onlyReadsMemory() const;
|
D | CallSite.h | 417 bool onlyReadsMemory() const { in onlyReadsMemory() function 418 CALLSITE_DELEGATE_GETTER(onlyReadsMemory()); in onlyReadsMemory() 564 bool onlyReadsMemory(unsigned OpNo) const { in onlyReadsMemory() function
|
D | Function.h | 294 bool onlyReadsMemory() const { 425 bool onlyReadsMemory(unsigned n) const {
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Argument.h | 112 bool onlyReadsMemory() const;
|
D | Function.h | 317 bool onlyReadsMemory() const { in onlyReadsMemory() function 448 bool onlyReadsMemory(unsigned n) const { in onlyReadsMemory() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | AliasAnalysis.cpp | 203 if (onlyReadsMemory(MRB)) in getModRefInfo() 276 if (onlyReadsMemory(Call1B) && onlyReadsMemory(Call2B)) in getModRefInfo() 281 if (onlyReadsMemory(Call1B)) in getModRefInfo() 688 if (Call->onlyReadsMemory(ArgNo)) { in callCapturesBefore()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/IR/ |
D | Argument.h | 141 bool onlyReadsMemory() const;
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAPElim.cpp | 54 if (Depth < 3 && !JCB->onlyReadsMemory() && in MayAutorelease()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAPElim.cpp | 81 !JCS.onlyReadsMemory() && in MayAutorelease()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | ObjCARCAPElim.cpp | 81 !JCS.onlyReadsMemory() && in MayAutorelease()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Analysis/ |
D | AliasAnalysis.cpp | 290 if (Call1B.onlyReadsMemory() && Call2B.onlyReadsMemory()) in getModRefInfo() 295 if (Call1B.onlyReadsMemory()) in getModRefInfo() 691 if (Call->onlyReadsMemory(ArgNo)) { in callCapturesBefore()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 631 if (!CB.onlyReadsMemory()) in determinePointerAccessAttrs() 659 } else if (CB.onlyReadsMemory() || CB.onlyReadsMemory(UseIndex)) { in determinePointerAccessAttrs() 845 if (F->onlyReadsMemory() && F->doesNotThrow() && in addArgumentAttrs() 884 if (!HasNonLocalUses && !A.onlyReadsMemory()) { in addArgumentAttrs() 1591 if (F.mustProgress() && F.onlyReadsMemory()) in functionWillReturn()
|
/external/llvm/lib/Transforms/Scalar/ |
D | PartiallyInlineLibCalls.cpp | 32 if (Call->onlyReadsMemory()) in optimizeSQRT()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | PartiallyInlineLibCalls.cpp | 36 if (Call->onlyReadsMemory()) in optimizeSQRT()
|