/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | CallSite.h | 206 bool doesNotAccessMemory() const { in doesNotAccessMemory() function 207 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory()); in doesNotAccessMemory() 209 void setDoesNotAccessMemory(bool doesNotAccessMemory = true) { 210 CALLSITE_DELEGATE_SETTER(setDoesNotAccessMemory(doesNotAccessMemory));
|
/external/llvm/include/llvm/IR/ |
D | Function.h | 286 bool doesNotAccessMemory() const { 295 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly); 303 return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly); 418 bool doesNotAccessMemory(unsigned n) const { 426 return doesNotAccessMemory(n) ||
|
D | CallSite.h | 409 bool doesNotAccessMemory() const { in doesNotAccessMemory() function 410 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory()); in doesNotAccessMemory() 560 bool doesNotAccessMemory(unsigned OpNo) const { in doesNotAccessMemory() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Function.h | 309 bool doesNotAccessMemory() const { in doesNotAccessMemory() function 318 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly); in onlyReadsMemory() 326 return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly); in doesNotReadMemory() 441 bool doesNotAccessMemory(unsigned n) const { in doesNotAccessMemory() function 449 return doesNotAccessMemory(n) || in onlyReadsMemory()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Function.h | 446 bool doesNotAccessMemory() const { in doesNotAccessMemory() function 455 return doesNotAccessMemory() || hasFnAttribute(Attribute::ReadOnly); in onlyReadsMemory() 463 return doesNotAccessMemory() || hasFnAttribute(Attribute::WriteOnly); in doesNotReadMemory()
|
D | CallSite.h | 446 bool doesNotAccessMemory() const { in doesNotAccessMemory() function 447 CALLSITE_DELEGATE_GETTER(doesNotAccessMemory()); in doesNotAccessMemory() 619 bool doesNotAccessMemory(unsigned OpNo) const { in doesNotAccessMemory() function
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Function.h | 219 bool doesNotAccessMemory() const { 229 return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | AliasAnalysis.h | 282 bool doesNotAccessMemory(ImmutableCallSite CS) { in doesNotAccessMemory() function 289 bool doesNotAccessMemory(const Function *F) { in doesNotAccessMemory() function
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | Instruction.cpp | 325 return !cast<CallInst>(this)->doesNotAccessMemory(); in mayReadFromMemory() 327 return !cast<InvokeInst>(this)->doesNotAccessMemory(); in mayReadFromMemory()
|
/external/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 200 if (F->doesNotAccessMemory()) in addReadAttrs() 408 if (CS.doesNotAccessMemory()) { in determinePointerReadAttrs() 457 if (!CS.doesNotAccessMemory(UseIndex)) in determinePointerReadAttrs()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 493 return !cast<CallInst>(this)->doesNotAccessMemory(); in mayReadFromMemory() 495 return !cast<InvokeInst>(this)->doesNotAccessMemory(); in mayReadFromMemory()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 247 if (F->doesNotAccessMemory()) in addReadAttrs() 453 if (CS.doesNotAccessMemory()) { in determinePointerReadAttrs() 502 if (!CS.doesNotAccessMemory(UseIndex)) in determinePointerReadAttrs()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 271 bool doesNotAccessMemory(ImmutableCallSite CS) { in doesNotAccessMemory() function 286 bool doesNotAccessMemory(const Function *F) { in doesNotAccessMemory() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | Instruction.cpp | 516 return !cast<CallInst>(this)->doesNotAccessMemory(); in mayReadFromMemory() 518 return !cast<InvokeInst>(this)->doesNotAccessMemory(); in mayReadFromMemory()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 203 if (F->doesNotAccessMemory()) in AddReadAttrs()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/ |
D | GVNSink.cpp | 103 (isa<InvokeInst>(I) && !cast<InvokeInst>(I)->doesNotAccessMemory()) || in isMemoryInst() 104 (isa<CallInst>(I) && !cast<CallInst>(I)->doesNotAccessMemory()); in isMemoryInst()
|
D | LoopVersioningLICM.cpp | 363 if (isa<CallInst>(I) && !AA->doesNotAccessMemory(CallSite(I))) { in instructionSafeForVersioning()
|
/external/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 339 if (!(CS.doesNotCapture(A - B) && (CS.doesNotAccessMemory(A - B) || in IsSafeStackAlloca() 340 CS.doesNotAccessMemory()))) { in IsSafeStackAlloca()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 409 bool doesNotAccessMemory(ImmutableCallSite CS) { in doesNotAccessMemory() function 424 bool doesNotAccessMemory(const Function *F) { in doesNotAccessMemory() function
|
/external/llvm/lib/Analysis/ |
D | GlobalsModRef.cpp | 497 if (F->doesNotAccessMemory()) { in AnalyzeCallGraph() 857 if (CS.doesNotAccessMemory()) in getModRefInfoForArgument()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopVersioningLICM.cpp | 330 if (isa<CallInst>(I) && !AA->doesNotAccessMemory(CallSite(I))) { in instructionSafeForVersioning()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | GlobalsModRef.cpp | 519 if (F->doesNotAccessMemory()) { in AnalyzeCallGraph() 890 if (CS.doesNotAccessMemory()) in getModRefInfoForArgument()
|
D | BasicAliasAnalysis.cpp | 644 if (CS.doesNotAccessMemory()) in getModRefBehavior() 679 if (F->doesNotAccessMemory()) in getModRefBehavior() 839 if (CS.doesNotAccessMemory(OperandNo)) in getModRefInfo()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | SafeStack.cpp | 347 if (!(CS.doesNotCapture(A - B) && (CS.doesNotAccessMemory(A - B) || in IsSafeStackAlloca() 348 CS.doesNotAccessMemory()))) { in IsSafeStackAlloca()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | EarlyCSE.cpp | 61 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy(); in canHandle()
|